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 TBaseWhereAdapter. acos(ColumnRef arg)Add ACOS(arg) to the expressionTBaseWhereAdapter. and(ColumnRef ref)Add AND {ref} to the expressionTBaseWhereAdapter. coalesce(ColumnRef... columnRefs)Add a COALESCE(c1, c2, ...) function.TBaseWhereAdapter. cos(ColumnRef arg)Add COS(arg) to the expressionTBaseWhereAdapter. eq(ColumnRef ref)Add '= {ref}' to the expressionTBaseWhereAdapter. escape(ColumnRef ref)Add ESCAPE {ref} to the expressionTBaseWhereAdapter. gt(ColumnRef ref)Add > {ref} to the expressionTBaseWhereAdapter. gte(ColumnRef ref)Add >= {ref} to the expressionTBaseWhereAdapter. like(ColumnRef ref)Add LIKE {ref} to the expressionTBaseWhereAdapter. lt(ColumnRef ref)Add < {ref} to the expressionTBaseWhereAdapter. lte(ColumnRef ref)Add <= ref to the expressionTBaseWhereAdapter. neq(ColumnRef ref)Add != {ref} to the expressionTBaseWhereAdapter. or(ColumnRef ref)Add OR {ref} to the expressionTBaseWhereAdapter. radians(ColumnRef arg)Add RADIANS(arg) to the expressionTBaseWhereAdapter. 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 ColumnRefExpressionSupport. col(String ref)Factory function for creating aColumnRefinstance from a stringstatic ColumnRefExpressionSupport. 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)StringStringExpNodeVisitor. 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 TExpNodeVisitor. 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 
 -