Enum Operation
- java.lang.Object
-
- java.lang.Enum<Operation>
-
- com.apple.foundationdb.relational.api.fluentsql.expression.Operation
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD
AND
DIV
EQUAL
GREATER_THAN
GREATER_THAN_EQUALS
GREATEST
IS_NOT_NULL
IS_NULL
JAVA_CALL
LESS_THAN
LESS_THAN_EQUALS
MOD
MUL
NOT
NOT_EQUAL
OR
SUB
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<?>
getType()
static Operation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Operation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUAL
public static final Operation EQUAL
-
NOT_EQUAL
public static final Operation NOT_EQUAL
-
IS_NULL
public static final Operation IS_NULL
-
IS_NOT_NULL
public static final Operation IS_NOT_NULL
-
GREATER_THAN
public static final Operation GREATER_THAN
-
LESS_THAN
public static final Operation LESS_THAN
-
GREATER_THAN_EQUALS
public static final Operation GREATER_THAN_EQUALS
-
LESS_THAN_EQUALS
public static final Operation LESS_THAN_EQUALS
-
AND
public static final Operation AND
-
OR
public static final Operation OR
-
NOT
public static final Operation NOT
-
ADD
public static final Operation ADD
-
DIV
public static final Operation DIV
-
MUL
public static final Operation MUL
-
SUB
public static final Operation SUB
-
MOD
public static final Operation MOD
-
GREATEST
public static final Operation GREATEST
-
JAVA_CALL
public static final Operation JAVA_CALL
-
-
Method Detail
-
values
public static 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 (Operation c : 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 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
-
getType
@Nonnull public java.lang.Class<?> getType()
-
-