- All Implemented Interfaces:
Serializable
,Comparable<SimpleConsole.ExitMode>
- Enclosing class:
- SimpleConsole
Mode determining what happens when a frame created by
SimpleConsole.newFramedInstance(int,int,String,boolean,SimpleConsole.ExitMode)
closes.-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic SimpleConsole.ExitMode
Returns the enum constant of this type with the specified name.static SimpleConsole.ExitMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ALWAYS
The application always exits. -
ASK
Ask if the application should exit. If the user chooses 'OK', the application will exit; otherwise the frame will remain visible. -
NEVER
The application never exits. In this case, the frame's visibility will be changed so that the frame is not visible.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-