Uses of Interface
org.alfresco.repo.search.impl.querymodel.Constraint
-
-
Uses of Constraint in org.alfresco.opencmis.search
Methods in org.alfresco.opencmis.search that return Constraint Modifier and Type Method Description static Constraint
CMISFTSQueryParser. buildFTS(java.lang.String ftsExpression, QueryModelFactory factory, FunctionEvaluationContext functionEvaluationContext, Selector selector, java.util.Map<java.lang.String,Column> columnMap, java.lang.String defaultField)
-
Uses of Constraint in org.alfresco.repo.search.impl.parsers
Methods in org.alfresco.repo.search.impl.parsers that return Constraint Modifier and Type Method Description static Constraint
FTSQueryParser. buildFTS(java.lang.String ftsExpression, QueryModelFactory factory, FunctionEvaluationContext functionEvaluationContext, Selector selector, java.util.Map<java.lang.String,Column> columnMap, FTSParser.Mode mode, QueryOptions.Connective defaultFieldConnective, java.util.Map<java.lang.String,java.lang.String> templates, java.lang.String defaultField, FTSQueryParser.RerankPhase rerankPhase)
-
Uses of Constraint in org.alfresco.repo.search.impl.querymodel
Subinterfaces of Constraint in org.alfresco.repo.search.impl.querymodel Modifier and Type Interface Description interface
Conjunction
interface
Disjunction
interface
FunctionalConstraint
A constraint defined by a function that returns a boolean value.Methods in org.alfresco.repo.search.impl.querymodel that return Constraint Modifier and Type Method Description Constraint
QueryModelFactory. createConjunction(java.util.List<Constraint> constraints)
Constraint
QueryModelFactory. createDisjunction(java.util.List<Constraint> constraints)
Constraint
QueryModelFactory. createFunctionalConstraint(Function function, java.util.Map<java.lang.String,Argument> functionArguments)
Constraint
Query. getConstraint()
Get the constraints for the query.Constraint
Join. getJoinCondition()
Get the join condition.Methods in org.alfresco.repo.search.impl.querymodel that return types with arguments of type Constraint Modifier and Type Method Description java.util.List<Constraint>
Conjunction. getConstraints()
Get the list of constraints which must all be metjava.util.List<Constraint>
Disjunction. getConstraints()
Get the list of constraints for which at least one must be met.Methods in org.alfresco.repo.search.impl.querymodel with parameters of type Constraint Modifier and Type Method Description Join
QueryModelFactory. createJoin(Source left, Source right, JoinType joinType, Constraint joinCondition)
Query
QueryModelFactory. createQuery(java.util.List<Column> columns, Source source, Constraint constraint, java.util.List<Ordering> orderings)
Method parameters in org.alfresco.repo.search.impl.querymodel with type arguments of type Constraint Modifier and Type Method Description Constraint
QueryModelFactory. createConjunction(java.util.List<Constraint> constraints)
Constraint
QueryModelFactory. createDisjunction(java.util.List<Constraint> constraints)
-
Uses of Constraint in org.alfresco.repo.search.impl.querymodel.impl
Classes in org.alfresco.repo.search.impl.querymodel.impl that implement Constraint Modifier and Type Class Description class
BaseConjunction
class
BaseConstraint
class
BaseDisjunction
class
BaseFunctionalConstraint
class
SimpleConstraint
Methods in org.alfresco.repo.search.impl.querymodel.impl that return Constraint Modifier and Type Method Description Constraint
BaseQuery. getConstraint()
Constraint
BaseJoin. getJoinCondition()
Methods in org.alfresco.repo.search.impl.querymodel.impl that return types with arguments of type Constraint Modifier and Type Method Description java.util.List<Constraint>
BaseConjunction. getConstraints()
java.util.List<Constraint>
BaseDisjunction. getConstraints()
Constructors in org.alfresco.repo.search.impl.querymodel.impl with parameters of type Constraint Constructor Description BaseJoin(Source left, Source right, JoinType joinType, Constraint joinConstraint)
BaseQuery(java.util.List<Column> columns, Source source, Constraint constraint, java.util.List<Ordering> orderings)
Constructor parameters in org.alfresco.repo.search.impl.querymodel.impl with type arguments of type Constraint Constructor Description BaseConjunction(java.util.List<Constraint> constraints)
BaseDisjunction(java.util.List<Constraint> constraints)
-
Uses of Constraint in org.alfresco.repo.search.impl.querymodel.impl.lucene
Classes in org.alfresco.repo.search.impl.querymodel.impl.lucene that implement Constraint Modifier and Type Class Description class
LuceneConjunction<Q,S,E extends java.lang.Throwable>
class
LuceneDisjunction<Q,S,E extends java.lang.Throwable>
class
LuceneFunctionalConstraint<Q,S,E extends java.lang.Throwable>
Methods in org.alfresco.repo.search.impl.querymodel.impl.lucene that return Constraint Modifier and Type Method Description Constraint
LuceneQueryModelFactory. createConjunction(java.util.List<Constraint> constraints)
Constraint
LuceneQueryModelFactory. createDisjunction(java.util.List<Constraint> constraints)
Constraint
LuceneQueryModelFactory. createFunctionalConstraint(Function function, java.util.Map<java.lang.String,Argument> functionArguments)
Methods in org.alfresco.repo.search.impl.querymodel.impl.lucene with parameters of type Constraint Modifier and Type Method Description Join
LuceneQueryModelFactory. createJoin(Source left, Source right, JoinType joinType, Constraint joinCondition)
Query
LuceneQueryModelFactory. createQuery(java.util.List<Column> columns, Source source, Constraint constraint, java.util.List<Ordering> orderings)
Method parameters in org.alfresco.repo.search.impl.querymodel.impl.lucene with type arguments of type Constraint Modifier and Type Method Description Constraint
LuceneQueryModelFactory. createConjunction(java.util.List<Constraint> constraints)
Constraint
LuceneQueryModelFactory. createDisjunction(java.util.List<Constraint> constraints)
Constructors in org.alfresco.repo.search.impl.querymodel.impl.lucene with parameters of type Constraint Constructor Description LuceneJoin(Source left, Source right, JoinType joinType, Constraint joinConstraint)
LuceneQuery(java.util.List<Column> columns, Source source, Constraint constraint, java.util.List<Ordering> orderings)
Constructor parameters in org.alfresco.repo.search.impl.querymodel.impl.lucene with type arguments of type Constraint Constructor Description LuceneConjunction(java.util.List<Constraint> constraints)
LuceneDisjunction(java.util.List<Constraint> constraints)
-