Uses of Class
com.ibm.fhir.database.utils.query.expression.Predicate
-
Packages that use Predicate Package Description com.ibm.fhir.database.utils.query com.ibm.fhir.database.utils.query.expression -
-
Uses of Predicate in com.ibm.fhir.database.utils.query
Methods in com.ibm.fhir.database.utils.query that return Predicate Modifier and Type Method Description static Predicate
Select. predicate(String boolExpr)
-
Uses of Predicate in com.ibm.fhir.database.utils.query.expression
Subclasses of Predicate in com.ibm.fhir.database.utils.query.expression Modifier and Type Class Description class
AndPredicate
Implements the SQL "AND" predicateclass
BinaryPredicate
A binary predicate node (like AND, OR etc)class
NotPredicate
Implements the SQL "NOT" predicateclass
OrPredicate
Implements the SQL "OR" predicateclass
PredicateExpression
Implements the expression predicateclass
UnaryPredicate
An unary predicate (e.g.Methods in com.ibm.fhir.database.utils.query.expression that return Predicate Modifier and Type Method Description Predicate
Predicate. and(Predicate right)
Predicate
Predicate. and(String boolExpr)
Predicate
BinaryPredicate. getLeft()
Predicate
UnaryPredicate. getPredicate()
Predicate
BinaryPredicate. getRight()
Predicate
Predicate. not()
static Predicate
Predicate. not(Predicate p)
static Predicate
Predicate. not(String boolExpr)
Predicate
Predicate. or(Predicate right)
Predicate
Predicate. or(String boolExpr)
Methods in com.ibm.fhir.database.utils.query.expression with parameters of type Predicate Modifier and Type Method Description Predicate
Predicate. and(Predicate right)
static Predicate
Predicate. not(Predicate p)
Predicate
Predicate. or(Predicate right)
Constructors in com.ibm.fhir.database.utils.query.expression with parameters of type Predicate Constructor Description AndPredicate(Predicate left, Predicate right)
BinaryPredicate(Predicate left, Predicate right)
NotPredicate(Predicate p)
OrPredicate(Predicate left, Predicate right)
UnaryPredicate(Predicate predicate)
-