|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use QueryBuilder.ConstraintBuilder | |
|---|---|
| org.xcmis.search.query | |
| Uses of QueryBuilder.ConstraintBuilder in org.xcmis.search.query |
|---|
| Subclasses of QueryBuilder.ConstraintBuilder in org.xcmis.search.query | |
|---|---|
protected class |
QueryBuilder.LowerCaser
A specialized form of the QueryBuilder.ConstraintBuilder that always wraps the
generated constraint in a LowerCase instance. |
protected class |
QueryBuilder.UpperCaser
A specialized form of the QueryBuilder.ConstraintBuilder that always wraps the
generated constraint in a UpperCase instance. |
| Fields in org.xcmis.search.query declared as QueryBuilder.ConstraintBuilder | |
|---|---|
protected QueryBuilder.ConstraintBuilder |
QueryBuilder.ComparisonBuilder.constraintBuilder
|
| Methods in org.xcmis.search.query that return QueryBuilder.ConstraintBuilder | |
|---|---|
QueryBuilder.ConstraintBuilder |
QueryBuilder.ConstraintBuilder.and()
Signal that the previous constraint clause be AND-ed together with another constraint clause that will be defined immediately after this method call. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.CastAsRightHandSide.as(PropertyType type)
Define the right-hand side literal value cast as the specified type. |
protected QueryBuilder.ConstraintBuilder |
QueryBuilder.ConstraintBuilder.buildLogicalConstraint()
|
QueryBuilder.ConstraintBuilder |
QueryBuilder.ConstraintBuilder.closeParen()
Complete the specification of a constraint clause, and return the builder for the parent constraint clause. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ConstraintBuilder.hasProperty(String table,
String propertyName)
Define a constraint clause that the node within the named table has at least one value for the named property. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ComparisonBuilder.is(Operator operator,
Object literal)
Define the right-hand-side of the constraint using the supplied operator. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ConstraintBuilder.isBelowPath(String descendantTable,
String ancestorPath)
Define a constraint clause that the node within the named table is a descendant of the node at the supplied path. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ConstraintBuilder.isChild(String childTable,
String parentPath)
Define a constraint clause that the node within the named table is the child of the node at the supplied path. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ComparisonBuilder.isEqualTo(Object literal)
Define the right-hand-side of the constraint to be equivalent to the supplied literal value. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ComparisonBuilder.isEqualToVariable(String variableName)
Define the right-hand-side of the constraint to be equivalent to the value of the supplied variable. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ComparisonBuilder.isGreaterThan(Object literal)
Define the right-hand-side of the constraint to be greater than the supplied literal value. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ComparisonBuilder.isGreaterThanOrEqualTo(Object literal)
Define the right-hand-side of the constraint to be greater than or equal to the supplied literal value. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ComparisonBuilder.isGreaterThanOrEqualToVariable(String variableName)
Define the right-hand-side of the constraint to be greater than or equal to the value of the supplied variable. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ComparisonBuilder.isGreaterThanVariable(String variableName)
Define the right-hand-side of the constraint to be greater than the value of the supplied variable. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ComparisonBuilder.isLessThan(Object literal)
Define the right-hand-side of the constraint to be less than the supplied literal value. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ComparisonBuilder.isLessThanOrEqualTo(Object literal)
Define the right-hand-side of the constraint to be less than or equal to the supplied literal value. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ComparisonBuilder.isLessThanOrEqualToVariable(String variableName)
Define the right-hand-side of the constraint to be less than or equal to the value of the supplied variable. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ComparisonBuilder.isLessThanVariable(String variableName)
Define the right-hand-side of the constraint to be less than the value of the supplied variable. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ComparisonBuilder.isLike(Object literal)
Define the right-hand-side of the constraint to be LIKE the supplied literal value. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ComparisonBuilder.isLikeVariable(String variableName)
Define the right-hand-side of the constraint to be LIKE the value of the supplied variable. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ComparisonBuilder.isNotEqualTo(Object literal)
Define the right-hand-side of the constraint to be not equal to the supplied literal value. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ComparisonBuilder.isNotEqualToVariable(String variableName)
Define the right-hand-side of the constraint to be not equal to the value of the supplied variable. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ConstraintBuilder.isSameNode(String table,
String asNodeAtPath)
Define a constraint clause that the node within the named table is the same node as that appearing at the supplied path. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ComparisonBuilder.isVariable(Operator operator,
String variableName)
Define the right-hand-side of the constraint using the supplied operator. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.RightHandSide.literal(BigDecimal literal)
Define the right-hand side of a comparison. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.RightHandSide.literal(boolean literal)
Define the right-hand side of a comparison. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.RightHandSide.literal(Calendar literal)
Define the right-hand side of a comparison. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.RightHandSide.literal(double literal)
Define the right-hand side of a comparison. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.RightHandSide.literal(float literal)
Define the right-hand side of a comparison. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.RightHandSide.literal(int literal)
Define the right-hand side of a comparison. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.RightHandSide.literal(long literal)
Define the right-hand side of a comparison. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.RightHandSide.literal(String literal)
Define the right-hand side of a comparison. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.RightHandSide.literal(URI literal)
Define the right-hand side of a comparison. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.RightHandSide.literal(UUID literal)
Define the right-hand side of a comparison. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ConstraintBuilder.not()
Signal that the next constraint clause (defined immediately after this method) should be negated. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ConstraintBuilder.openParen()
Simulate the use of an open parenthesis in the constraint. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ConstraintBuilder.or()
Signal that the previous constraint clause be OR-ed together with another constraint clause that will be defined immediately after this method call. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ConstraintBuilder.search(String table,
String searchExpression)
Define a constraint clause that the node within the named table have at least one property that satisfies the full-text search expression. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.ConstraintBuilder.search(String table,
String propertyName,
String searchExpression)
Define a constraint clause that the node within the named table have a value for the named property that satisfies the full-text search expression. |
protected QueryBuilder.ConstraintBuilder |
QueryBuilder.ConstraintBuilder.setConstraint(Constraint constraint)
|
protected QueryBuilder.ConstraintBuilder |
QueryBuilder.UpperCaser.setConstraint(Constraint constraint)
|
protected QueryBuilder.ConstraintBuilder |
QueryBuilder.LowerCaser.setConstraint(Constraint constraint)
|
QueryBuilder.ConstraintBuilder |
QueryBuilder.RightHandSide.variable(String variableName)
Define the right-hand side of a comparison. |
QueryBuilder.ConstraintBuilder |
QueryBuilder.where()
Begin the WHERE clause for this query by obtaining the constraint builder. |
| Methods in org.xcmis.search.query that return types with arguments of type QueryBuilder.ConstraintBuilder | |
|---|---|
QueryBuilder.CastAs<QueryBuilder.ConstraintBuilder> |
QueryBuilder.RightHandSide.cast(BigDecimal literal)
Define the right-hand side of a comparison. |
QueryBuilder.CastAs<QueryBuilder.ConstraintBuilder> |
QueryBuilder.RightHandSide.cast(boolean literal)
Define the right-hand side of a comparison. |
QueryBuilder.CastAs<QueryBuilder.ConstraintBuilder> |
QueryBuilder.RightHandSide.cast(Calendar literal)
Define the right-hand side of a comparison. |
QueryBuilder.CastAs<QueryBuilder.ConstraintBuilder> |
QueryBuilder.RightHandSide.cast(double literal)
Define the right-hand side of a comparison. |
QueryBuilder.CastAs<QueryBuilder.ConstraintBuilder> |
QueryBuilder.RightHandSide.cast(int literal)
Define the right-hand side of a comparison. |
QueryBuilder.CastAs<QueryBuilder.ConstraintBuilder> |
QueryBuilder.RightHandSide.cast(long literal)
Define the right-hand side of a comparison. |
QueryBuilder.CastAs<QueryBuilder.ConstraintBuilder> |
QueryBuilder.RightHandSide.cast(String literal)
Define the right-hand side of a comparison. |
QueryBuilder.CastAs<QueryBuilder.ConstraintBuilder> |
QueryBuilder.RightHandSide.cast(URI literal)
Define the right-hand side of a comparison. |
QueryBuilder.CastAs<QueryBuilder.ConstraintBuilder> |
QueryBuilder.RightHandSide.cast(UUID literal)
Define the right-hand side of a comparison. |
| Constructors in org.xcmis.search.query with parameters of type QueryBuilder.ConstraintBuilder | |
|---|---|
QueryBuilder.ComparisonBuilder(QueryBuilder.ConstraintBuilder constraintBuilder,
DynamicOperand left)
|
|
QueryBuilder.ConstraintBuilder(QueryBuilder.ConstraintBuilder parent)
|
|
QueryBuilder.LowerCaser(QueryBuilder.ConstraintBuilder delegate)
|
|
QueryBuilder.UpperCaser(QueryBuilder.ConstraintBuilder delegate)
|
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||