Package de.mirkosertic.bytecoder.core.ir
Enum NumericalTest.Operation
- java.lang.Object
-
- java.lang.Enum<NumericalTest.Operation>
-
- de.mirkosertic.bytecoder.core.ir.NumericalTest.Operation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<NumericalTest.Operation>
- Enclosing class:
- NumericalTest
public static enum NumericalTest.Operation extends java.lang.Enum<NumericalTest.Operation>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Operation()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NumericalTest.Operation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static NumericalTest.Operation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQ
public static final NumericalTest.Operation EQ
-
NE
public static final NumericalTest.Operation NE
-
LT
public static final NumericalTest.Operation LT
-
GE
public static final NumericalTest.Operation GE
-
GT
public static final NumericalTest.Operation GT
-
LE
public static final NumericalTest.Operation LE
-
-
Method Detail
-
values
public static NumericalTest.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 (NumericalTest.Operation c : NumericalTest.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 NumericalTest.Operation 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
-
-