public enum MapFunction extends Enum<MapFunction> implements net.openhft.chronicle.core.util.SerializableBiFunction<MapView,Object,Object>
| Enum Constant and Description |
|---|
COMPUTE |
COMPUTE_IF_ABSENT |
COMPUTE_IF_PRESENT |
CONTAINS_VALUE |
EQUALS |
HASH_CODE |
MERGE |
PUT_IF_ABSENT |
REMOVE |
REPLACE |
| Modifier and Type | Method and Description |
|---|---|
static MapFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfandThen, applypublic static final MapFunction CONTAINS_VALUE
public static final MapFunction REMOVE
public static final MapFunction REPLACE
public static final MapFunction PUT_IF_ABSENT
public static final MapFunction COMPUTE_IF_ABSENT
public static final MapFunction COMPUTE_IF_PRESENT
public static final MapFunction COMPUTE
public static final MapFunction MERGE
public static final MapFunction HASH_CODE
public static final MapFunction EQUALS
public static MapFunction[] values()
for (MapFunction c : MapFunction.values()) System.out.println(c);
public static MapFunction 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 © 2015. All rights reserved.