public static enum PassageEvent.EventType extends Enum<PassageEvent.EventType>
| Enum Constant and Description |
|---|
ADDED
Identifies the addition of one or more contiguous items to the list
|
CHANGED
Identifies one or more changes in the lists contents.
|
REMOVED
Identifies the removal of one or more contiguous items from the list
|
| Modifier and Type | Method and Description |
|---|---|
static PassageEvent.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PassageEvent.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PassageEvent.EventType CHANGED
public static final PassageEvent.EventType ADDED
public static final PassageEvent.EventType REMOVED
public static PassageEvent.EventType[] values()
for (PassageEvent.EventType c : PassageEvent.EventType.values()) System.out.println(c);
public static PassageEvent.EventType 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