public static enum StdioOptions.StdioType extends Enum<StdioOptions.StdioType>
| Enum Constant and Description |
|---|
CREATE_PIPE |
IGNORE |
INHERIT_FD |
INHERIT_STREAM |
| Modifier and Type | Method and Description |
|---|---|
static StdioOptions.StdioType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StdioOptions.StdioType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StdioOptions.StdioType IGNORE
public static final StdioOptions.StdioType CREATE_PIPE
public static final StdioOptions.StdioType INHERIT_FD
public static final StdioOptions.StdioType INHERIT_STREAM
public static StdioOptions.StdioType[] values()
for (StdioOptions.StdioType c : StdioOptions.StdioType.values()) System.out.println(c);
public static StdioOptions.StdioType 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 © 2021 WebFolder. All rights reserved.