public enum OutputConsoleType extends Enum<OutputConsoleType>
Modifier and Type | Method and Description |
---|---|
static OutputConsoleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputConsoleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputConsoleType OUT
public static final OutputConsoleType ERR
public static OutputConsoleType[] values()
for (OutputConsoleType c : OutputConsoleType.values()) System.out.println(c);
public static OutputConsoleType 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 null© Copyright IBM Corp. 2013. All rights reserved.