public static enum GroupEvent.Type extends Enum<GroupEvent.Type>
| Enum Constant and Description | 
|---|
GROUP_ADD_FAILED
Signifies that a request to create Group has failed. 
 | 
GROUP_ADD_REQUESTED  | 
GROUP_ADDED
Signifies that a new Group has been detected. 
 | 
GROUP_BUCKET_FAILOVER
Signifies change in the first live bucket in failover group
 (i.e. 
 | 
GROUP_REMOVE_FAILED
Signifies that a request to remove Group has failed. 
 | 
GROUP_REMOVE_REQUESTED  | 
GROUP_REMOVED
Signifies that a Group has been removed. 
 | 
GROUP_UPDATE_FAILED
Signifies that a request to update Group has failed. 
 | 
GROUP_UPDATE_REQUESTED  | 
GROUP_UPDATED
Signifies that a Group has been updated. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static GroupEvent.Type | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static GroupEvent.Type[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final GroupEvent.Type GROUP_ADDED
public static final GroupEvent.Type GROUP_REMOVED
public static final GroupEvent.Type GROUP_UPDATED
public static final GroupEvent.Type GROUP_ADD_FAILED
public static final GroupEvent.Type GROUP_REMOVE_FAILED
public static final GroupEvent.Type GROUP_UPDATE_FAILED
public static final GroupEvent.Type GROUP_BUCKET_FAILOVER
public static final GroupEvent.Type GROUP_ADD_REQUESTED
public static final GroupEvent.Type GROUP_UPDATE_REQUESTED
public static final GroupEvent.Type GROUP_REMOVE_REQUESTED
public static GroupEvent.Type[] values()
for (GroupEvent.Type c : GroupEvent.Type.values()) System.out.println(c);
public static GroupEvent.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