Uses of Class
org.apache.jackrabbit.oak.query.ast.ConstraintImpl
-
Packages that use ConstraintImpl Package Description org.apache.jackrabbit.oak.query org.apache.jackrabbit.oak.query.ast -
-
Uses of ConstraintImpl in org.apache.jackrabbit.oak.query
Methods in org.apache.jackrabbit.oak.query that return ConstraintImpl Modifier and Type Method Description ConstraintImplQueryImpl. getConstraint() -
Uses of ConstraintImpl in org.apache.jackrabbit.oak.query.ast
Subclasses of ConstraintImpl in org.apache.jackrabbit.oak.query.ast Modifier and Type Class Description classAndImplAn AND condition.classChildNodeImplThe "ischildnode(...)" condition.classComparisonImplA comparison operation (including "like").classDescendantNodeImplThe "isdescendantnode(...)" condition.classFullTextSearchImplA fulltext "contains(...)" condition.classInImplA "in" comparison operation.classNativeFunctionImplA native function condition.classNotFullTextSearchImplclassNotImplA "not" condition.classOrImplAn "or" condition.classPropertyExistenceImplA condition to check if the property exists ("is not null").classPropertyInexistenceImplA condition to check if the property does not exist ("is null").classSameNodeImplThe function "issamenode(..)".classSimilarImplSupport for "similar(...)classSpellcheckImplSupport for "spellcheck(...)classSuggestImplSupport for "suggest(...)Methods in org.apache.jackrabbit.oak.query.ast that return ConstraintImpl Modifier and Type Method Description ConstraintImplNotImpl. getConstraint()ConstraintImplAstElementFactory. in(DynamicOperandImpl left, ArrayList<StaticOperandImpl> list)ConstraintImplAndImpl. simplify()ConstraintImplConstraintImpl. simplify()Simplify the expression if possible, for example by removing duplicate expressions.ConstraintImplInImpl. simplify()ConstraintImplNotImpl. simplify()Apply DeMorgan's Laws to push AND/OR constraints higher.ConstraintImplOrImpl. simplify()ConstraintImplAstElementFactory. spellcheck(String selectorName, StaticOperandImpl expression)ConstraintImplAstElementFactory. suggest(String selectorName, StaticOperandImpl expression)Methods in org.apache.jackrabbit.oak.query.ast that return types with arguments of type ConstraintImpl Modifier and Type Method Description Set<ConstraintImpl>AndImpl. convertToUnion()@NotNull Set<ConstraintImpl>ConstraintImpl. convertToUnion()Compute a set of sub-constraints that could be used for composing UNION statements.Set<ConstraintImpl>OrImpl. convertToUnion()List<ConstraintImpl>AndImpl. getConstraints()List<ConstraintImpl>OrImpl. getConstraints()List<ConstraintImpl>SelectorImpl. getSelectorConstraints()Methods in org.apache.jackrabbit.oak.query.ast with parameters of type ConstraintImpl Modifier and Type Method Description AndImplAstElementFactory. and(ConstraintImpl constraint1, ConstraintImpl constraint2)NotImplAstElementFactory. not(ConstraintImpl constraint)OrImplAstElementFactory. or(ConstraintImpl constraint1, ConstraintImpl constraint2)voidSelectorImpl. restrictSelector(ConstraintImpl constraint)voidJoinImpl. setQueryConstraint(ConstraintImpl queryConstraint)voidSelectorImpl. setQueryConstraint(ConstraintImpl queryConstraint)abstract voidSourceImpl. setQueryConstraint(ConstraintImpl queryConstraint)Set the complete constraint of the query (the WHERE ...Method parameters in org.apache.jackrabbit.oak.query.ast with type arguments of type ConstraintImpl Modifier and Type Method Description voidAndImpl. addToUnionList(Set<ConstraintImpl> target)Constructors in org.apache.jackrabbit.oak.query.ast with parameters of type ConstraintImpl Constructor Description AndImpl(ConstraintImpl constraint1, ConstraintImpl constraint2)NotImpl(ConstraintImpl constraint)OrImpl(ConstraintImpl constraint1, ConstraintImpl constraint2)Constructor parameters in org.apache.jackrabbit.oak.query.ast with type arguments of type ConstraintImpl Constructor Description AndImpl(List<ConstraintImpl> constraints)OrImpl(List<ConstraintImpl> constraints)
-