@Deprecated public enum ConsoleOutput extends java.lang.Enum<ConsoleOutput>
| Enum Constant and Description |
|---|
Auto
Deprecated.
Enable color and rich output when the current process is attached to a console, disable when not attached to a console.
|
Plain
Deprecated.
Disable all color and rich output.
|
Rich
Deprecated.
Enable color and rich output, regardless of whether the current process is attached to a console or not.
|
Verbose
Deprecated.
Enable color and rich output like Rich, but output more detailed message.
|
| Modifier and Type | Method and Description |
|---|---|
static ConsoleOutput |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ConsoleOutput[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsoleOutput Plain
public static final ConsoleOutput Auto
public static final ConsoleOutput Rich
public static final ConsoleOutput Verbose
public static ConsoleOutput[] values()
for (ConsoleOutput c : ConsoleOutput.values()) System.out.println(c);
public static ConsoleOutput valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null