Package org.wildfly.plugin.common
Enum StandardOutput.Target
- All Implemented Interfaces:
Serializable
,Comparable<StandardOutput.Target>
- Enclosing class:
StandardOutput
The target for the the output stream.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe output stream data has been collected and can be queried.The output stream data has been discarded.The output stream will be redirected to a file.The output stream for a process will be inherited from this parent process.The output stream will be redirected toSystem.err
.The output stream will be redirected toSystem.out
. -
Method Summary
Modifier and TypeMethodDescriptionstatic StandardOutput.Target
Returns the enum constant of this type with the specified name.static StandardOutput.Target[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
COLLECTING
The output stream data has been collected and can be queried. -
DISCARDING
The output stream data has been discarded. -
FILE
The output stream will be redirected to a file. -
SYSTEM_ERR
The output stream will be redirected toSystem.err
. -
SYSTEM_OUT
The output stream will be redirected toSystem.out
. -
INHERIT
The output stream for a process will be inherited from this parent process.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-