Package adql.db
Class FunctionDef.FunctionParam
java.lang.Object
adql.db.FunctionDef.FunctionParam
- Enclosing class:
- FunctionDef
Definition of a function parameter.
This definition is composed of two items: the name and the type of the parameter.
- Since:
- 1.3
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionFunctionParam
(String paramName, DBType paramType) Create a function parameter. -
Method Summary
-
Field Details
-
name
Parameter name. Ensured not null -
type
Parameter type. Ensured not null
-
-
Constructor Details
-
FunctionParam
Create a function parameter.- Parameters:
paramName
- Name of the parameter to create. MUST NOT be NULLparamType
- Type of the parameter to create. If NULL, anUNKNOWN
type will be created and set instead.
-