Uses of Class
org.linuxforhealth.fhir.database.utils.query.WhereClause
-
Packages that use WhereClause Package Description org.linuxforhealth.fhir.database.utils.query org.linuxforhealth.fhir.database.utils.query.expression -
-
Uses of WhereClause in org.linuxforhealth.fhir.database.utils.query
Methods in org.linuxforhealth.fhir.database.utils.query that return WhereClause Modifier and Type Method Description WhereClause
FromAdapter. establishWhereClause()
Adds a where clause if one does not yet existWhereClause
Select. getWhereClause()
Getter for the whereClauseMethods in org.linuxforhealth.fhir.database.utils.query with parameters of type WhereClause Modifier and Type Method Description void
Select. setWhereClause(WhereClause wc)
Set the where-clause for this statementConstructors in org.linuxforhealth.fhir.database.utils.query with parameters of type WhereClause Constructor Description WhereAdapter(Select select, WhereClause whereClause)
Public constructor to start the WHERE clause in a select statementWhereAdapter(Select select, WhereClause whereClause, java.lang.String predicate)
Public constructorWhereAdapter(Select select, WhereClause whereClause, java.lang.String tableAlias, java.lang.String columnName)
Convenience for when the statement is written like .where("lr", "current_resource_id").eq("r", "resource_id")WhereAdapter(Select select, WhereClause whereClause, ExpNode predicate)
-
Uses of WhereClause in org.linuxforhealth.fhir.database.utils.query.expression
Methods in org.linuxforhealth.fhir.database.utils.query.expression with parameters of type WhereClause Modifier and Type Method Description T
StatementRenderer. select(java.util.List<With> withClauses, boolean distinct, SelectList selectList, FromClause fromClause, WhereClause whereClause, GroupByClause groupByClause, HavingClause havingClause, OrderByClause orderByClause, PaginationClause paginationClause, boolean unionAll, Select union)
Render the select statement using each of the components, some of which may be optional (null)java.lang.String
StringStatementRenderer. select(java.util.List<With> withClauses, boolean distinct, SelectList selectList, FromClause fromClause, WhereClause whereClause, GroupByClause groupByClause, HavingClause havingClause, OrderByClause orderByClause, PaginationClause paginationClause, boolean unionAll, Select union)
-