public enum TerminalEmulatorAutoCloseTrigger extends Enum<TerminalEmulatorAutoCloseTrigger>
Enum Constant and Description |
---|
CloseOnEscape
Close if the user presses ESC key on the keyboard
|
CloseOnExitPrivateMode
Close the frame when exiting from private mode
|
DoNotAutoClose
Auto-close disabled
|
Modifier and Type | Method and Description |
---|---|
static TerminalEmulatorAutoCloseTrigger |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TerminalEmulatorAutoCloseTrigger[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TerminalEmulatorAutoCloseTrigger DoNotAutoClose
public static final TerminalEmulatorAutoCloseTrigger CloseOnExitPrivateMode
public static final TerminalEmulatorAutoCloseTrigger CloseOnEscape
public static TerminalEmulatorAutoCloseTrigger[] values()
for (TerminalEmulatorAutoCloseTrigger c : TerminalEmulatorAutoCloseTrigger.values()) System.out.println(c);
public static TerminalEmulatorAutoCloseTrigger 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 nullCopyright © 2016. All rights reserved.