Uses of Class
adql.query.operand.OperationType
-
Packages that use OperationType Package Description adql.parser adql.query.operand -
-
Uses of OperationType in adql.parser
Methods in adql.parser with parameters of type OperationType Modifier and Type Method Description Operation
ADQLQueryFactory. createOperation(ADQLOperand leftOp, OperationType op, ADQLOperand rightOp)
-
Uses of OperationType in adql.query.operand
Methods in adql.query.operand that return OperationType Modifier and Type Method Description OperationType
Operation. getOperation()
Gets the operation symbol.static OperationType
OperationType. getOperator(java.lang.String str)
static OperationType
OperationType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OperationType[]
OperationType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in adql.query.operand with parameters of type OperationType Modifier and Type Method Description void
Operation. setOperation(OperationType newOperation)
Changes the type of this operation (SUM, SUB, MULT, DIV).Constructors in adql.query.operand with parameters of type OperationType Constructor Description Operation(ADQLOperand leftOp, OperationType op, ADQLOperand rightOp)
Builds an operation.
-