Enum CurrentSolutionPoint.Operation
- java.lang.Object
-
- java.lang.Enum<CurrentSolutionPoint.Operation>
-
- org.intocps.maestro.interpreter.values.variablestep.CurrentSolutionPoint.Operation
-
- All Implemented Interfaces:
Serializable,Comparable<CurrentSolutionPoint.Operation>
- Enclosing class:
- CurrentSolutionPoint
public static enum CurrentSolutionPoint.Operation extends Enum<CurrentSolutionPoint.Operation>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CurrentSolutionPoint.OperationvalueOf(String name)Returns the enum constant of this type with the specified name.static CurrentSolutionPoint.Operation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADVANCE
public static final CurrentSolutionPoint.Operation ADVANCE
-
PEEK
public static final CurrentSolutionPoint.Operation PEEK
-
ROLLBACK
public static final CurrentSolutionPoint.Operation ROLLBACK
-
-
Method Detail
-
values
public static CurrentSolutionPoint.Operation[] 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 (CurrentSolutionPoint.Operation c : CurrentSolutionPoint.Operation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CurrentSolutionPoint.Operation valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-