Uses of Class
org.h2.expression.BinaryOperation.OpType
-
Packages that use BinaryOperation.OpType Package Description org.h2.expression Expressions include mathematical operations, simple values, and others. -
-
Uses of BinaryOperation.OpType in org.h2.expression
Fields in org.h2.expression declared as BinaryOperation.OpType Modifier and Type Field Description private BinaryOperation.OpType
BinaryOperation. opType
Methods in org.h2.expression that return BinaryOperation.OpType Modifier and Type Method Description BinaryOperation.OpType
BinaryOperation. getOperationType()
Returns the type of this binary operation.static BinaryOperation.OpType
BinaryOperation.OpType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BinaryOperation.OpType[]
BinaryOperation.OpType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.h2.expression with parameters of type BinaryOperation.OpType Constructor Description BinaryOperation(BinaryOperation.OpType opType, Expression left, Expression right)
-