| Enum Constant and Description |
|---|
DELETE
A client deleted a row from the table.
|
ERROR
An error occurred in the system that relates to the table.
|
EXPIRED
A row was removed from the table because it expired.
|
INVALID
Default, uninitialized value.
|
PUT
A client put a row into the table.
|
| Modifier and Type | Method and Description |
|---|---|
static EventType |
fromString(java.lang.String typeName)
Get the event type enum from a string representation.
|
static java.lang.String |
listToString(java.util.Collection<EventType> eventTypeList)
Convert a collection of event types to a string.
|
java.lang.String |
toString()
Get the string representation of the event type.
|
static EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventType INVALID
public static final EventType PUT
public static final EventType DELETE
public static final EventType ERROR
public static final EventType EXPIRED
public static EventType[] values()
for (EventType c : EventType.values()) System.out.println(c);
public static EventType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<EventType>public static EventType fromString(java.lang.String typeName)
typeName - The string type name to convert.public static java.lang.String listToString(java.util.Collection<EventType> eventTypeList)
eventTypeList - A collection of EventType objects