Uses of Class
org.linuxforhealth.fhir.database.utils.query.expression.ColumnRef
-
Packages that use ColumnRef Package Description org.linuxforhealth.fhir.database.utils.query org.linuxforhealth.fhir.database.utils.query.expression org.linuxforhealth.fhir.database.utils.query.node -
-
Uses of ColumnRef in org.linuxforhealth.fhir.database.utils.query
Methods in org.linuxforhealth.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. radians(ColumnRef arg)
Add RADIANS(arg) to the expressionT
BaseWhereAdapter. sin(ColumnRef arg)
Add SIN(arg) to the expression -
Uses of ColumnRef in org.linuxforhealth.fhir.database.utils.query.expression
Methods in org.linuxforhealth.fhir.database.utils.query.expression that return ColumnRef Modifier and Type Method Description static ColumnRef
ExpressionSupport. col(java.lang.String ref)
Factory function for creating aColumnRef
instance from a stringstatic ColumnRef
ExpressionSupport. col(java.lang.String alias, java.lang.String name)
Method parameters in org.linuxforhealth.fhir.database.utils.query.expression with type arguments of type ColumnRef Modifier and Type Method Description java.util.Set<java.lang.String>
ColumnExpNodeVisitor. coalesce(java.util.List<ColumnRef> columnRefs)
java.lang.String
StringExpNodeVisitor. coalesce(java.util.List<ColumnRef> columnRefs)
-
Uses of ColumnRef in org.linuxforhealth.fhir.database.utils.query.node
Method parameters in org.linuxforhealth.fhir.database.utils.query.node with type arguments of type ColumnRef Modifier and Type Method Description T
ExpNodeVisitor. coalesce(java.util.List<ColumnRef> columnRefs)
Render a COALESCE(...) functionConstructors in org.linuxforhealth.fhir.database.utils.query.node with parameters of type ColumnRef Constructor Description CoalesceExpNode(ColumnRef[] refs)
Public constructor
-