public static enum AtomicMapEvent.Type extends Enum<AtomicMapEvent.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 AtomicMapEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AtomicMapEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AtomicMapEvent.Type INSERT
public static final AtomicMapEvent.Type UPDATE
public static final AtomicMapEvent.Type REMOVE
public static AtomicMapEvent.Type[] values()
for (AtomicMapEvent.Type c : AtomicMapEvent.Type.values()) System.out.println(c);
public static AtomicMapEvent.Type 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 nullCopyright © 2013–2018. All rights reserved.