public static enum ClusterEvent.Type extends java.lang.Enum<ClusterEvent.Type>
Enum Constant and Description |
---|
INSTANCE_ACTIVATED
Signifies that a cluster instance became active.
|
INSTANCE_ADDED
Signifies that a new cluster instance has been administratively added.
|
INSTANCE_DEACTIVATED
Signifies that a cluster instance became inactive.
|
INSTANCE_READY
Signifies that a cluster instance became ready.
|
INSTANCE_REMOVED
Signifies that a cluster instance has been administratively removed.
|
Modifier and Type | Method and Description |
---|---|
static ClusterEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClusterEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClusterEvent.Type INSTANCE_ADDED
public static final ClusterEvent.Type INSTANCE_REMOVED
public static final ClusterEvent.Type INSTANCE_ACTIVATED
public static final ClusterEvent.Type INSTANCE_READY
public static final ClusterEvent.Type INSTANCE_DEACTIVATED
public static ClusterEvent.Type[] values()
for (ClusterEvent.Type c : ClusterEvent.Type.values()) System.out.println(c);
public static ClusterEvent.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null