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