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