Package org.hpccsystems.commons.filter
Enum SQLOperator.OperatorType
- java.lang.Object
-
- java.lang.Enum<SQLOperator.OperatorType>
-
- org.hpccsystems.commons.filter.SQLOperator.OperatorType
-
- All Implemented Interfaces:
Serializable,Comparable<SQLOperator.OperatorType>
- Enclosing class:
- SQLOperator
public static enum SQLOperator.OperatorType extends Enum<SQLOperator.OperatorType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SQLOperator.OperatorTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SQLOperator.OperatorType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final SQLOperator.OperatorType UNKNOWN
-
PRE_UNARY
public static final SQLOperator.OperatorType PRE_UNARY
-
POST_UNARY
public static final SQLOperator.OperatorType POST_UNARY
-
NOOPTRUE
public static final SQLOperator.OperatorType NOOPTRUE
-
NOOPFALSE
public static final SQLOperator.OperatorType NOOPFALSE
-
BINARY
public static final SQLOperator.OperatorType BINARY
-
-
Method Detail
-
values
public static SQLOperator.OperatorType[] 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 (SQLOperator.OperatorType c : SQLOperator.OperatorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SQLOperator.OperatorType 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
-
-