Package | Description |
---|---|
adql.parser | |
adql.query.operand.function |
Modifier and Type | Method and Description |
---|---|
SQLFunction |
ADQLQueryFactory.createSQLFunction(SQLFunctionType type,
ADQLOperand op,
boolean distinctValues) |
Modifier and Type | Method and Description |
---|---|
SQLFunctionType |
SQLFunction.getType()
Gets the type (COUNT, SUM, AVG, ...) of this function.
|
static SQLFunctionType |
SQLFunctionType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SQLFunctionType[] |
SQLFunctionType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
SQLFunction(SQLFunctionType t,
ADQLOperand operand)
Creates a SQL function with one parameter.
|
SQLFunction(SQLFunctionType t,
ADQLOperand operand,
boolean distinctValues)
Creates a SQL function with one parameter.
|