public enum Target extends Enum<Target>
Enum Constant and Description |
---|
SYSTEM_ERR |
SYSTEM_OUT |
Modifier and Type | Field and Description |
---|---|
private PrintStream |
output |
Modifier and Type | Method and Description |
---|---|
PrintStream |
output() |
static Target |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Target[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Target SYSTEM_OUT
public static final Target SYSTEM_ERR
private final PrintStream output
public static Target[] values()
for (Target c : Target.values()) System.out.println(c);
public static Target 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 nullpublic PrintStream output()
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.