static enum AnsiConsole.JansiOutputType extends java.lang.Enum<AnsiConsole.JansiOutputType>
Enum Constant and Description |
---|
PASSTHROUGH |
RESET_ANSI_AT_CLOSE |
STRIP_ANSI |
WINDOWS |
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
description |
Modifier and Type | Method and Description |
---|---|
(package private) java.lang.String |
getDescription() |
static AnsiConsole.JansiOutputType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AnsiConsole.JansiOutputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnsiConsole.JansiOutputType PASSTHROUGH
public static final AnsiConsole.JansiOutputType RESET_ANSI_AT_CLOSE
public static final AnsiConsole.JansiOutputType STRIP_ANSI
public static final AnsiConsole.JansiOutputType WINDOWS
public static AnsiConsole.JansiOutputType[] values()
for (AnsiConsole.JansiOutputType c : AnsiConsole.JansiOutputType.values()) System.out.println(c);
public static AnsiConsole.JansiOutputType 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 nulljava.lang.String getDescription()