public enum Event extends Enum<Event>
| Enum Constant and Description |
|---|
cancelled |
error |
exceed_allowed |
exceed_disallowed |
exceed_global |
exceed_tree |
id |
maxrss |
niceness |
ping |
priority |
queued |
retcode |
running |
| Modifier and Type | Method and Description |
|---|---|
static Event |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Event[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Event id
public static final Event queued
public static final Event priority
public static final Event running
public static final Event niceness
public static final Event retcode
public static final Event cancelled
public static final Event ping
public static final Event error
public static final Event exceed_allowed
public static final Event exceed_disallowed
public static final Event exceed_global
public static final Event exceed_tree
public static final Event maxrss
public static Event[] values()
for (Event c : Event.values()) System.out.println(c);
public static Event 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 © 2010–2016. All rights reserved.