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