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