public enum ProcessOutputFlag extends java.lang.Enum<ProcessOutputFlag>
{9979E85A-52BB-40B7-870C-57115E27E0F1}
Enum Constant and Description |
---|
None
No flags set.
|
StdErr
Get output from stderr.
|
Modifier and Type | Method and Description |
---|---|
static ProcessOutputFlag |
fromValue(long v) |
static ProcessOutputFlag |
fromValue(java.lang.String v) |
int |
value() |
static ProcessOutputFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessOutputFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessOutputFlag None
public static final ProcessOutputFlag StdErr
public static ProcessOutputFlag[] values()
for (ProcessOutputFlag c : ProcessOutputFlag.values()) System.out.println(c);
public static ProcessOutputFlag 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 nullpublic int value()
public static ProcessOutputFlag fromValue(long v)
public static ProcessOutputFlag fromValue(java.lang.String v)