public enum ConsoleTarget extends Enum<ConsoleTarget>
| Enum Constant and Description |
|---|
CONSOLE
Since WildFly 9.
|
STDERR |
STDOUT |
| Modifier and Type | Method and Description |
|---|---|
String |
value() |
static ConsoleTarget |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConsoleTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsoleTarget CONSOLE
public static final ConsoleTarget STDOUT
public static final ConsoleTarget STDERR
public static ConsoleTarget[] values()
for (ConsoleTarget c : ConsoleTarget.values()) System.out.println(c);
public static ConsoleTarget 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 String value()
Copyright © 2021. All rights reserved.