public static enum IRRelationalExpression.Operation extends Enum<IRRelationalExpression.Operation>
| Modifier and Type | Method and 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.
|
public static final IRRelationalExpression.Operation GT
public static final IRRelationalExpression.Operation GTE
public static final IRRelationalExpression.Operation LT
public static final IRRelationalExpression.Operation LTE
public static IRRelationalExpression.Operation[] values()
for (IRRelationalExpression.Operation c : IRRelationalExpression.Operation.values()) System.out.println(c);
public static IRRelationalExpression.Operation valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static IRRelationalExpression.Operation get(String strOp)
Copyright © 2021. All rights reserved.