Package gw.lang.ir.expression
Enum IRRelationalExpression.Operation
- java.lang.Object
-
- java.lang.Enum<IRRelationalExpression.Operation>
-
- gw.lang.ir.expression.IRRelationalExpression.Operation
-
- All Implemented Interfaces:
Serializable
,Comparable<IRRelationalExpression.Operation>
- Enclosing class:
- IRRelationalExpression
public static enum IRRelationalExpression.Operation extends Enum<IRRelationalExpression.Operation>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IRRelationalExpression.Operation
get(String strOp)
static IRRelationalExpression.Operation
valueOf(String name)
Returns the enum constant of this type with the specified name.static IRRelationalExpression.Operation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GT
public static final IRRelationalExpression.Operation GT
-
GTE
public static final IRRelationalExpression.Operation GTE
-
LT
public static final IRRelationalExpression.Operation LT
-
LTE
public static final IRRelationalExpression.Operation LTE
-
-
Method Detail
-
values
public static IRRelationalExpression.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 (IRRelationalExpression.Operation c : IRRelationalExpression.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 IRRelationalExpression.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
-
get
public static IRRelationalExpression.Operation get(String strOp)
-
-