public static enum ProcessLauncherEvent.EventType extends java.lang.Enum<ProcessLauncherEvent.EventType>
Enum Constant and Description |
---|
FINISHED
The underlying process has terminated itself
|
STDERR
The underlying process has updated its stderr
|
STDOUT
The underlying process has updated its stdout
|
Modifier and Type | Method and Description |
---|---|
static ProcessLauncherEvent.EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessLauncherEvent.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessLauncherEvent.EventType STDOUT
public static final ProcessLauncherEvent.EventType STDERR
public static final ProcessLauncherEvent.EventType FINISHED
public static ProcessLauncherEvent.EventType[] values()
for (ProcessLauncherEvent.EventType c : ProcessLauncherEvent.EventType.values()) System.out.println(c);
public static ProcessLauncherEvent.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 null