Uses of Interface
org.apache.lucene.sandbox.facet.iterators.OrdinalIterator
Packages that use OrdinalIterator
Package
Description
Sandbox faceting: facet cutters, see
FacetCutter
for details.Sandbox faceting: facet ordinals.
Sandbox faceting: classes that can record per ordinal data E.g.
-
Uses of OrdinalIterator in org.apache.lucene.sandbox.facet.cutters
Subinterfaces of OrdinalIterator in org.apache.lucene.sandbox.facet.cuttersModifier and TypeInterfaceDescriptioninterface
Interface to be implemented to cut documents into facets for an index segment (leaf).Methods in org.apache.lucene.sandbox.facet.cutters that return OrdinalIteratorModifier and TypeMethodDescriptiondefault OrdinalIterator
FacetCutter.getChildrenOrds
(int ord) For facets that have hierarchy (levels), get all children ordinals for given ord.TaxonomyFacetsCutter.getChildrenOrds
(int parentOrd) default OrdinalIterator
FacetCutter.getOrdinalsToRollup()
For facets that have hierarchy (levels), return all top level dimension ordinals that require rollup.TaxonomyFacetsCutter.getOrdinalsToRollup()
-
Uses of OrdinalIterator in org.apache.lucene.sandbox.facet.iterators
Classes in org.apache.lucene.sandbox.facet.iterators that implement OrdinalIteratorModifier and TypeClassDescriptionfinal class
OrdinalIterator
that filters out ordinals from delegate if they are not in the candidate set.final class
Facets results selector to get children for selected parent.final class
TopnOrdinalIterator<T extends Comparable<T>>
Class that consumes incoming ordinals, sorts them by provided Comparable, and returns first top N ordinals only.Fields in org.apache.lucene.sandbox.facet.iterators declared as OrdinalIteratorModifier and TypeFieldDescriptionstatic final OrdinalIterator
OrdinalIterator.EMPTY
Return empty ordinal iteratorMethods in org.apache.lucene.sandbox.facet.iterators that return OrdinalIteratorModifier and TypeMethodDescriptionstatic OrdinalIterator
OrdinalIterator.fromArray
(int[] source) Convert int array to ordinal iterator.Constructors in org.apache.lucene.sandbox.facet.iterators with parameters of type OrdinalIteratorModifierConstructorDescriptionTaxonomyChildrenOrdinalIterator
(OrdinalIterator sourceOrds, ParallelTaxonomyArrays.IntArray parents, int parentOrd) CreateTopnOrdinalIterator
(OrdinalIterator sourceOrds, ComparableSupplier<T> comparableSupplier, int topN) Constructor. -
Uses of OrdinalIterator in org.apache.lucene.sandbox.facet.recorders
Methods in org.apache.lucene.sandbox.facet.recorders that return OrdinalIteratorModifier and TypeMethodDescriptionCountFacetRecorder.recordedOrds()
FacetRecorder.recordedOrds()
Return next collected ordinal, orNO_MORE_ORDS
LongAggregationsFacetRecorder.recordedOrds()
MultiFacetsRecorder.recordedOrds()