Package | Description |
---|---|
adql.parser | |
adql.query.operand.function |
Modifier and Type | Method and Description |
---|---|
MathFunction |
ADQLQueryFactory.createMathFunction(MathFunctionType type,
ADQLOperand param1,
ADQLOperand param2) |
Modifier and Type | Method and 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.
|
Constructor and 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.
|