public static enum TestOutputEvent.Destination extends Enum<TestOutputEvent.Destination>
Modifier and Type | Method and Description |
---|---|
static TestOutputEvent.Destination |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestOutputEvent.Destination[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestOutputEvent.Destination StdOut
public static final TestOutputEvent.Destination StdErr
public static TestOutputEvent.Destination[] values()
for (TestOutputEvent.Destination c : TestOutputEvent.Destination.values()) System.out.println(c);
public static TestOutputEvent.Destination 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