- All Implemented Interfaces:
Serializable
,Comparable<CLIApplication.State>
,Constable
- Enclosing class:
- CLIApplication
Possible states in which the current readline operation may be in.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe application is waiting for the user to write a commandthe application is opening a text editor, been unavailable while its openA dialog has been open and the user needs to write a valuethe terminal is set as a xlconsole linked to the selected workbench - all commands are pushed to the xlconsole until exit -
Method Summary
Modifier and TypeMethodDescriptionstatic CLIApplication.State
Returns the enum constant of this class with the specified name.static CLIApplication.State[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
READ_COMMAND
The application is waiting for the user to write a command -
READ_VALUE
A dialog has been open and the user needs to write a value -
READ_TEXTEDITOR
the application is opening a text editor, been unavailable while its open -
READ_XLCONSOLE
the terminal is set as a xlconsole linked to the selected workbench - all commands are pushed to the xlconsole until exit
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-