public static enum UserLogEvent.EventType extends java.lang.Enum<UserLogEvent.EventType>
Enum Constant and Description |
---|
DELETE_JOB |
JOB_COMPLETED |
JOB_STARTED |
JVM_FINISHED |
Modifier and Type | Method and Description |
---|---|
static UserLogEvent.EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserLogEvent.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserLogEvent.EventType JVM_FINISHED
public static final UserLogEvent.EventType JOB_STARTED
public static final UserLogEvent.EventType JOB_COMPLETED
public static final UserLogEvent.EventType DELETE_JOB
public static UserLogEvent.EventType[] values()
for (UserLogEvent.EventType c : UserLogEvent.EventType.values()) System.out.println(c);
public static UserLogEvent.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 nullCopyright © 2009 The Apache Software Foundation