public static enum Types.EventOperation extends Enum<Types.EventOperation>
Enum Constant and Description |
---|
ADD
An object has been created
|
DEL
An object has been deleted
|
MOD
An object has been modified
|
UNRECOGNIZED
The value does not belong to this enumeration
|
Modifier and Type | Method and Description |
---|---|
static Types.EventOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Types.EventOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.EventOperation UNRECOGNIZED
public static final Types.EventOperation ADD
public static final Types.EventOperation DEL
public static final Types.EventOperation MOD
public static Types.EventOperation[] values()
for (Types.EventOperation c : Types.EventOperation.values()) System.out.println(c);
public static Types.EventOperation 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