Uses of Class
org.apache.lucene.facet.taxonomy.ParallelTaxonomyArrays.IntArray
Packages that use ParallelTaxonomyArrays.IntArray
Package
Description
Taxonomy of Categories.
Taxonomy index implementation using on top of a Directory.
Sandbox faceting: facet cutters, see
FacetCutter
for details.Sandbox faceting: facet ordinals.
-
Uses of ParallelTaxonomyArrays.IntArray in org.apache.lucene.facet.taxonomy
Fields in org.apache.lucene.facet.taxonomy declared as ParallelTaxonomyArrays.IntArrayModifier and TypeFieldDescriptionprivate ParallelTaxonomyArrays.IntArray
TaxonomyFacets.children
Maps parent ordinal to its child, or -1 if the parent is childless.private ParallelTaxonomyArrays.IntArray
TaxonomyFacetLabels.FacetLabelReader.parents
(package private) final ParallelTaxonomyArrays.IntArray
TaxonomyFacets.parents
Maps an ordinal to its parent, or -1 if there is no parent (root node).private ParallelTaxonomyArrays.IntArray
TaxonomyFacets.siblings
Maps an ordinal to its sibling, or -1 if there is no sibling.private final ParallelTaxonomyArrays.IntArray
TaxonomyReader.ChildrenIterator.siblings
Methods in org.apache.lucene.facet.taxonomy that return ParallelTaxonomyArrays.IntArrayModifier and TypeMethodDescriptionabstract ParallelTaxonomyArrays.IntArray
ParallelTaxonomyArrays.children()
Returns the children array, wherechildren[i]
denotes a child of category ordinali
.(package private) ParallelTaxonomyArrays.IntArray
TaxonomyFacets.getChildren()
Returns int[] mapping each ordinal to its first child; this is a large array and is computed (and then saved) the first time this method is invoked.(package private) ParallelTaxonomyArrays.IntArray
TaxonomyFacets.getSiblings()
Returns int[] mapping each ordinal to its next sibling; this is a large array and is computed (and then saved) the first time this method is invoked.abstract ParallelTaxonomyArrays.IntArray
ParallelTaxonomyArrays.parents()
Returns the parents array, whereparents[i]
denotes the parent of category ordinali
.abstract ParallelTaxonomyArrays.IntArray
ParallelTaxonomyArrays.siblings()
Returns the siblings array, wheresiblings[i]
denotes the sibling of category ordinali
.Constructors in org.apache.lucene.facet.taxonomy with parameters of type ParallelTaxonomyArrays.IntArrayModifierConstructorDescription(package private)
ChildrenIterator
(int child, ParallelTaxonomyArrays.IntArray siblings) -
Uses of ParallelTaxonomyArrays.IntArray in org.apache.lucene.facet.taxonomy.directory
Modifier and TypeClassDescription(package private) static class
-
Uses of ParallelTaxonomyArrays.IntArray in org.apache.lucene.sandbox.facet.cutters
Fields in org.apache.lucene.sandbox.facet.cutters declared as ParallelTaxonomyArrays.IntArrayModifier and TypeFieldDescriptionprivate ParallelTaxonomyArrays.IntArray
TaxonomyFacetsCutter.children
private ParallelTaxonomyArrays.IntArray
TaxonomyFacetsCutter.siblings
Methods in org.apache.lucene.sandbox.facet.cutters that return ParallelTaxonomyArrays.IntArrayModifier and TypeMethodDescription(package private) ParallelTaxonomyArrays.IntArray
TaxonomyFacetsCutter.getChildren()
Returns int[] mapping each ordinal to its first child; this is a large array and is computed (and then saved) the first time this method is invoked.(package private) ParallelTaxonomyArrays.IntArray
TaxonomyFacetsCutter.getSiblings()
Returns int[] mapping each ordinal to its next sibling; this is a large array and is computed (and then saved) the first time this method is invoked. -
Uses of ParallelTaxonomyArrays.IntArray in org.apache.lucene.sandbox.facet.iterators
Fields in org.apache.lucene.sandbox.facet.iterators declared as ParallelTaxonomyArrays.IntArrayModifier and TypeFieldDescriptionprivate final ParallelTaxonomyArrays.IntArray
TaxonomyChildrenOrdinalIterator.parents
Constructors in org.apache.lucene.sandbox.facet.iterators with parameters of type ParallelTaxonomyArrays.IntArrayModifierConstructorDescriptionTaxonomyChildrenOrdinalIterator
(OrdinalIterator sourceOrds, ParallelTaxonomyArrays.IntArray parents, int parentOrd) Create