public static enum LogUpdateEvent.StreamType extends java.lang.Enum<LogUpdateEvent.StreamType>
| Enum Constant and Description |
|---|
STD_ERR
Output to
stderr. |
STD_IN
Input from
stdin. |
STD_OUT
Output to
stdout. |
| Modifier and Type | Method and Description |
|---|---|
static LogUpdateEvent.StreamType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogUpdateEvent.StreamType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogUpdateEvent.StreamType STD_IN
stdin.public static final LogUpdateEvent.StreamType STD_OUT
stdout.public static final LogUpdateEvent.StreamType STD_ERR
stderr.public static LogUpdateEvent.StreamType[] values()
for (LogUpdateEvent.StreamType c : LogUpdateEvent.StreamType.values()) System.out.println(c);
public static LogUpdateEvent.StreamType 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