public static enum SetEvent.Type extends java.lang.Enum<SetEvent.Type>
Enum Constant and Description |
---|
ADD
Entry added to the set.
|
REMOVE
Entry removed from the set.
|
Modifier and Type | Method and Description |
---|---|
static SetEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SetEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SetEvent.Type ADD
public static final SetEvent.Type REMOVE
public static SetEvent.Type[] values()
for (SetEvent.Type c : SetEvent.Type.values()) System.out.println(c);
public static SetEvent.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