public enum LBaaSStatus extends Enum<LBaaSStatus>
| Enum Constant and Description |
|---|
ACTIVE
The LBaaS v1 resource is ready and active.
|
ERROR
The LBaaS v1 resource is in an error state.
|
INACTIVE
The LBaaS v1 resource is created but not active.
|
PENDING_CREATE
The LBaaS v1 resource is being created.
|
PENDING_DELETE
The LBaaS v1 resource is going to be deleted.
|
PENDING_UPDATE
The LBaaS v1 resource is being updated.
|
UNRECOGNIZED
Used by jclouds when the service returns an unknown value other than null.
|
| Modifier and Type | Method and Description |
|---|---|
static LBaaSStatus |
fromValue(String name) |
String |
toString() |
static LBaaSStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LBaaSStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LBaaSStatus ACTIVE
public static final LBaaSStatus PENDING_CREATE
public static final LBaaSStatus PENDING_UPDATE
public static final LBaaSStatus PENDING_DELETE
public static final LBaaSStatus INACTIVE
public static final LBaaSStatus ERROR
public static final LBaaSStatus UNRECOGNIZED
public static LBaaSStatus[] values()
for (LBaaSStatus c : LBaaSStatus.values()) System.out.println(c);
public static LBaaSStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<LBaaSStatus>public static LBaaSStatus fromValue(String name)
Copyright © 2009-2016 The Apache Software Foundation. All Rights Reserved.