public enum MapUpdate extends Enum<MapUpdate> implements net.openhft.chronicle.core.util.SerializableUpdaterWithArg<MapView,Object>
Enum Constant and Description |
---|
PUT_ALL |
REPLACE_ALL |
Modifier and Type | Method and Description |
---|---|
static MapUpdate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapUpdate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapUpdate PUT_ALL
public static final MapUpdate REPLACE_ALL
public static MapUpdate[] values()
for (MapUpdate c : MapUpdate.values()) System.out.println(c);
public static MapUpdate 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 © 2021. All rights reserved.