Uses of Interface
org.apache.jackrabbit.core.query.lucene.MultiColumnQueryHits
-
Packages that use MultiColumnQueryHits Package Description org.apache.jackrabbit.core.query.lucene org.apache.jackrabbit.core.query.lucene.join -
-
Uses of MultiColumnQueryHits in org.apache.jackrabbit.core.query.lucene
Classes in org.apache.jackrabbit.core.query.lucene that implement MultiColumnQueryHits Modifier and Type Class Description class
FilterMultiColumnQueryHits
FilterMultiColumnQueryHits
implements aMultiColumnQueryHits
filter that forwards each call to the underlying query hits.class
QueryHitsAdapter
class
SortedMultiColumnQueryHits
SortedMultiColumnQueryHits
implements sorting of query hits based onOrdering
s.Methods in org.apache.jackrabbit.core.query.lucene that return MultiColumnQueryHits Modifier and Type Method Description MultiColumnQueryHits
FilterMultiColumnQuery. execute(JackrabbitIndexSearcher searcher, Ordering[] orderings, long resultFetchHint)
Executes this query and returns multi column query hits.MultiColumnQueryHits
JackrabbitIndexSearcher. execute(Query query, Sort sort, long resultFetchHint, Name selectorName)
Executes the query and returns the hits that match the query.MultiColumnQueryHits
JoinQuery. execute(JackrabbitIndexSearcher searcher, Ordering[] orderings, long resultFetchHint)
Executes this query and returns multi column query hits.MultiColumnQueryHits
MultiColumnQuery. execute(JackrabbitIndexSearcher searcher, Ordering[] orderings, long resultFetchHint)
Executes this query and returns multi column query hits.MultiColumnQueryHits
MultiColumnQueryAdapter. execute(JackrabbitIndexSearcher searcher, Ordering[] orderings, long resultFetchHint)
Executes this query and returns multi column query hits.protected MultiColumnQueryHits
MultiColumnQueryResult. executeQuery(long resultFetchHint)
Executes the query for this result and returns hits.protected abstract MultiColumnQueryHits
QueryResultImpl. executeQuery(long resultFetchHint)
Executes the query for this result and returns hits.MultiColumnQueryHits
SearchIndex. executeQuery(SessionImpl session, AbstractQueryImpl queryImpl, Query query, Path[] orderProps, boolean[] orderSpecs, String[] orderFuncs, long resultFetchHint)
Executes the query on the search index.MultiColumnQueryHits
SearchIndex. executeQuery(SessionImpl session, MultiColumnQuery query, Ordering[] orderings, long resultFetchHint)
Executes the query on the search index.protected MultiColumnQueryHits
SingleColumnQueryResult. executeQuery(long resultFetchHint)
Executes the query for this result and returns hits.Constructors in org.apache.jackrabbit.core.query.lucene with parameters of type MultiColumnQueryHits Constructor Description FilterMultiColumnQueryHits(MultiColumnQueryHits hits)
Creates a newFilterMultiColumnQueryHits
, which forwards each call tohits
.SortedMultiColumnQueryHits(MultiColumnQueryHits hits, Ordering[] orderings, IndexReader reader)
Creates sorted query hits. -
Uses of MultiColumnQueryHits in org.apache.jackrabbit.core.query.lucene.join
Classes in org.apache.jackrabbit.core.query.lucene.join that implement MultiColumnQueryHits Modifier and Type Class Description class
Join
Join
implements the result of a join.Fields in org.apache.jackrabbit.core.query.lucene.join declared as MultiColumnQueryHits Modifier and Type Field Description protected MultiColumnQueryHits
AbstractCondition. inner
The inner query hits.protected MultiColumnQueryHits
Join. outer
The outer query hits.Methods in org.apache.jackrabbit.core.query.lucene.join that return MultiColumnQueryHits Modifier and Type Method Description protected static MultiColumnQueryHits
Join. getSourceWithName(Name selectorName, MultiColumnQueryHits left, MultiColumnQueryHits right)
Methods in org.apache.jackrabbit.core.query.lucene.join with parameters of type MultiColumnQueryHits Modifier and Type Method Description static Join
Join. create(MultiColumnQueryHits left, MultiColumnQueryHits right, JoinType joinType, JoinConditionImpl condition, IndexReader reader, HierarchyResolver resolver, NamespaceMappings nsMappings, HierarchyManager hmgr)
Creates a new join result.protected static int
AbstractCondition. getIndex(MultiColumnQueryHits source, Name selectorName)
Returns the index of the selector with the givenselectorName
within the givensource
.protected static int
Join. getIndex(MultiColumnQueryHits source, Name selectorName)
Returns the index of the selector with the givenselectorName
within the givensource
.protected static MultiColumnQueryHits
Join. getSourceWithName(Name selectorName, MultiColumnQueryHits left, MultiColumnQueryHits right)
Constructors in org.apache.jackrabbit.core.query.lucene.join with parameters of type MultiColumnQueryHits Constructor Description AbstractCondition(MultiColumnQueryHits inner)
Creates a new join condition with the giveninner
query hits.AncestorNodeJoin(MultiColumnQueryHits context, Name contextSelectorName, IndexReader reader, HierarchyResolver resolver)
Creates a new ancestor node join condition.AncestorPathNodeJoin(MultiColumnQueryHits context, Name contextSelectorName, Path relPath, HierarchyManager hmgr)
Creates an ancestor path node join.ChildNodeJoin(MultiColumnQueryHits parent, IndexReader reader, HierarchyResolver resolver, ChildNodeJoinConditionImpl condition)
Creates a new child node join condition.DescendantNodeJoin(MultiColumnQueryHits context, Name contextSelectorName, IndexReader reader, HierarchyResolver resolver)
Creates a new descendant node join condition.DescendantPathNodeJoin(MultiColumnQueryHits context, Name contextSelectorName, Path relPath, HierarchyManager hmgr)
Creates a new descendant path node join condition.EquiJoin(MultiColumnQueryHits inner, int innerScoreNodeIndex, NamespaceMappings nsMappings, IndexReader reader, Name innerProperty, Name outerProperty)
Creates a new equi join condition.ParentNodeJoin(MultiColumnQueryHits child, IndexReader reader, HierarchyResolver resolver, ChildNodeJoinConditionImpl condition)
Creates a new parent node join condition.SameNodeJoin(MultiColumnQueryHits inner, Name innerSelectorName, IndexReader reader)
Creates a new same node join.
-