Package com.algo
Enum MainRunner.MainWindowOptions
- java.lang.Object
-
- java.lang.Enum<MainRunner.MainWindowOptions>
-
- com.algo.MainRunner.MainWindowOptions
-
- All Implemented Interfaces:
OptionsEnum
,java.io.Serializable
,java.lang.Comparable<MainRunner.MainWindowOptions>
- Enclosing class:
- MainRunner
public static enum MainRunner.MainWindowOptions extends java.lang.Enum<MainRunner.MainWindowOptions> implements OptionsEnum
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.algo.algorithms.OptionsEnum
OptionsEnum.Options
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXIT
PROCESS_XSLT
SELECT_ALGORITHMS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getOrdinal()
java.lang.String
getText()
static MainRunner.MainWindowOptions
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MainRunner.MainWindowOptions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SELECT_ALGORITHMS
public static final MainRunner.MainWindowOptions SELECT_ALGORITHMS
-
PROCESS_XSLT
public static final MainRunner.MainWindowOptions PROCESS_XSLT
-
EXIT
public static final MainRunner.MainWindowOptions EXIT
-
-
Method Detail
-
values
public static MainRunner.MainWindowOptions[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MainRunner.MainWindowOptions c : MainRunner.MainWindowOptions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MainRunner.MainWindowOptions valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getText
public java.lang.String getText()
- Specified by:
getText
in interfaceOptionsEnum
-
getOrdinal
public int getOrdinal()
- Specified by:
getOrdinal
in interfaceOptionsEnum
-
-