public static enum GroupStore.UpdateType extends java.lang.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.
|
SET
Modify existing group entry by setting the provided information,
overwriting the previous group entry entirely.
|
| Modifier and Type | Method and Description |
|---|---|
static GroupStore.UpdateType |
valueOf(java.lang.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 final GroupStore.UpdateType SET
public static GroupStore.UpdateType[] values()
for (GroupStore.UpdateType c : GroupStore.UpdateType.values()) System.out.println(c);
public static GroupStore.UpdateType 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