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