public static enum FloatingIpEvent.Type extends Enum<FloatingIpEvent.Type>
| Enum Constant and Description |
|---|
FLOATINGIP_BIND
Signifies that Floating IP has been bound.
|
FLOATINGIP_DELETE
Signifies that Floating IP has been deleted.
|
FLOATINGIP_PUT
Signifies that Floating IP has been created.
|
FLOATINGIP_UNBIND
Signifies that Floating IP has been unbound.
|
| Modifier and Type | Method and Description |
|---|---|
static FloatingIpEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FloatingIpEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FloatingIpEvent.Type FLOATINGIP_PUT
public static final FloatingIpEvent.Type FLOATINGIP_DELETE
public static final FloatingIpEvent.Type FLOATINGIP_BIND
public static final FloatingIpEvent.Type FLOATINGIP_UNBIND
public static FloatingIpEvent.Type[] values()
for (FloatingIpEvent.Type c : FloatingIpEvent.Type.values()) System.out.println(c);
public static FloatingIpEvent.Type 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