Uses of Class
adql.query.operand.function.MathFunctionType
-
Packages that use MathFunctionType Package Description adql.parser adql.query.operand.function -
-
Uses of MathFunctionType in adql.parser
Methods in adql.parser with parameters of type MathFunctionType Modifier and Type Method Description MathFunction
ADQLQueryFactory. createMathFunction(MathFunctionType type, ADQLOperand param1, ADQLOperand param2)
-
Uses of MathFunctionType in adql.query.operand.function
Methods in adql.query.operand.function that return MathFunctionType Modifier and Type Method Description MathFunctionType
MathFunction. getType()
Gets the type of the function (ABS, COS, SIN, ...).static MathFunctionType
MathFunctionType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MathFunctionType[]
MathFunctionType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in adql.query.operand.function with parameters of type MathFunctionType Constructor Description MathFunction(MathFunctionType t)
Creates a mathematical function without parameter.MathFunction(MathFunctionType t, ADQLOperand parameter)
Creates a mathematical function with only one parameter.MathFunction(MathFunctionType t, ADQLOperand parameter1, ADQLOperand parameter2)
Creates a mathematical function with two parameters.
-