public static enum FloatingIp.Status extends Enum<FloatingIp.Status>
| Enum Constant and Description |
|---|
ACTIVE
Signifies that a floating Ip is currently active.
|
INACTIVE
Signifies that a floating Ip is currently inactive.
|
| Modifier and Type | Method and Description |
|---|---|
static FloatingIp.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FloatingIp.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FloatingIp.Status ACTIVE
public static final FloatingIp.Status INACTIVE
public static FloatingIp.Status[] values()
for (FloatingIp.Status c : FloatingIp.Status.values()) System.out.println(c);
public static FloatingIp.Status 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 null