public static enum GroupStore.UpdateType extends Enum<GroupStore.UpdateType>
| Enum Constant and Description |
|---|
ADD
Modify existing group entry by adding provided information.
|
REMOVE
Modify existing group by removing provided information from it.
|
| Modifier and Type | Method and Description |
|---|---|
static GroupStore.UpdateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupStore.UpdateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupStore.UpdateType ADD
public static final GroupStore.UpdateType REMOVE
public static GroupStore.UpdateType[] values()
for (GroupStore.UpdateType c : GroupStore.UpdateType.values()) System.out.println(c);
public static GroupStore.UpdateType 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