Uses of Class
com.ibm.fhir.database.utils.query.expression.ColumnRef
-
Packages that use ColumnRef Package Description com.ibm.fhir.database.utils.query com.ibm.fhir.database.utils.query.expression com.ibm.fhir.database.utils.query.node -
-
Uses of ColumnRef in com.ibm.fhir.database.utils.query
Methods in com.ibm.fhir.database.utils.query with parameters of type ColumnRef Modifier and Type Method Description T
BaseWhereAdapter. acos(ColumnRef arg)
Add ACOS(arg) to the expressionT
BaseWhereAdapter. and(ColumnRef ref)
Add AND {ref} to the expressionT
BaseWhereAdapter. coalesce(ColumnRef... columnRefs)
Add a COALESCE(c1, c2, ...) function.T
BaseWhereAdapter. cos(ColumnRef arg)
Add COS(arg) to the expressionT
BaseWhereAdapter. eq(ColumnRef ref)
Add '= {ref}' to the expressionT
BaseWhereAdapter. escape(ColumnRef ref)
Add ESCAPE {ref} to the expressionT
BaseWhereAdapter. gt(ColumnRef ref)
Add > {ref} to the expressionT
BaseWhereAdapter. gte(ColumnRef ref)
Add >= {ref} to the expressionT
BaseWhereAdapter. like(ColumnRef ref)
Add LIKE {ref} to the expressionT
BaseWhereAdapter. lt(ColumnRef ref)
Add < {ref} to the expressionT
BaseWhereAdapter. lte(ColumnRef ref)
Add <= ref to the expressionT
BaseWhereAdapter. neq(ColumnRef ref)
Add != {ref} to the expressionT
BaseWhereAdapter. or(ColumnRef ref)
Add OR {ref} to the expressionT
BaseWhereAdapter. sin(ColumnRef arg)
Add SIN(arg) to the expression -
Uses of ColumnRef in com.ibm.fhir.database.utils.query.expression
Methods in com.ibm.fhir.database.utils.query.expression that return ColumnRef Modifier and Type Method Description static ColumnRef
ExpressionSupport. col(String ref)
Factory function for creating aColumnRef
instance from a stringstatic ColumnRef
ExpressionSupport. col(String alias, String name)
Method parameters in com.ibm.fhir.database.utils.query.expression with type arguments of type ColumnRef Modifier and Type Method Description Set<String>
ColumnExpNodeVisitor. coalesce(List<ColumnRef> columnRefs)
String
StringExpNodeVisitor. coalesce(List<ColumnRef> columnRefs)
-
Uses of ColumnRef in com.ibm.fhir.database.utils.query.node
Method parameters in com.ibm.fhir.database.utils.query.node with type arguments of type ColumnRef Modifier and Type Method Description T
ExpNodeVisitor. coalesce(List<ColumnRef> columnRefs)
Render a COALESCE(...) functionConstructors in com.ibm.fhir.database.utils.query.node with parameters of type ColumnRef Constructor Description CoalesceExpNode(ColumnRef[] refs)
Public constructor
-