public enum ChronicleEngineMapEventType extends Enum<ChronicleEngineMapEventType>
Modifier and Type | Method and Description |
---|---|
static ChronicleEngineMapEventType |
fromEvent(net.openhft.chronicle.engine.api.map.MapEvent event) |
Class<? extends net.openhft.chronicle.engine.api.map.MapEvent> |
getType() |
static Class<? extends net.openhft.chronicle.engine.api.map.MapEvent> |
getType(String name) |
static ChronicleEngineMapEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChronicleEngineMapEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChronicleEngineMapEventType INSERT
public static final ChronicleEngineMapEventType UPDATE
public static final ChronicleEngineMapEventType REMOVE
public static ChronicleEngineMapEventType[] values()
for (ChronicleEngineMapEventType c : ChronicleEngineMapEventType.values()) System.out.println(c);
public static ChronicleEngineMapEventType 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 nullpublic Class<? extends net.openhft.chronicle.engine.api.map.MapEvent> getType()
public static Class<? extends net.openhft.chronicle.engine.api.map.MapEvent> getType(String name)
public static ChronicleEngineMapEventType fromEvent(net.openhft.chronicle.engine.api.map.MapEvent event)
Apache Camel