Uses of Class
org.apache.lucene.internal.hppc.IntArrayList
-
Packages that use IntArrayList Package Description org.apache.lucene.analysis.core Basic, general-purpose analysis components.org.apache.lucene.analysis.hunspell A Java implementation of Hunspell stemming and spell-checking algorithms (Hunspell
), and a stemming TokenFilter (HunspellStemFilter
) based on it.org.apache.lucene.analysis.path Analysis components for path-like strings such as filenames.org.apache.lucene.analysis.synonym Analysis components for Synonyms.org.apache.lucene.codecs.lucene99 Lucene 9.9 file format.org.apache.lucene.internal.hppc Internal copy of a subset of classes from the HPPC library.org.apache.lucene.sandbox.document This package contains several point types:BigIntegerPoint
for 128-bit integersLatLonPoint
for latitude/longitude geospatial pointsorg.apache.lucene.sandbox.search This package contains a flexible graph-based proximity query, TermAutomatonQuery, and geospatial queries.org.apache.lucene.search Code to search indices.org.apache.lucene.spatial3d.geom Shapes implemented using 3D planar geometry.org.apache.lucene.util.graph Utility classes for working with token streams as graphs.org.apache.lucene.util.hnsw Navigable Small-World graph, nominally Hierarchical but currently only has a single layer. -
-
Uses of IntArrayList in org.apache.lucene.analysis.core
Fields in org.apache.lucene.analysis.core declared as IntArrayList Modifier and Type Field Description private IntArrayList
FlattenGraphFilter.OutputNode. inputNodes
-
Uses of IntArrayList in org.apache.lucene.analysis.hunspell
Fields in org.apache.lucene.analysis.hunspell declared as IntArrayList Modifier and Type Field Description private IntArrayList
WordStorage.Builder. morphDataIDs
Method parameters in org.apache.lucene.analysis.hunspell with type arguments of type IntArrayList Modifier and Type Method Description private FST<IntsRef>
Dictionary. affixFST(java.util.TreeMap<java.lang.String,IntArrayList> affixes)
private void
Dictionary. parseAffix(java.util.TreeMap<java.lang.String,IntArrayList> affixes, CharHashSet secondStageFlags, java.lang.String header, java.io.LineNumberReader reader, AffixKind kind, java.util.Map<java.lang.String,java.lang.Integer> seenPatterns, java.util.Map<java.lang.String,java.lang.Integer> seenStrips, FlagEnumerator flags)
Parses a specific affix rule putting the result into the provided affix map -
Uses of IntArrayList in org.apache.lucene.analysis.path
Fields in org.apache.lucene.analysis.path declared as IntArrayList Modifier and Type Field Description private IntArrayList
ReversePathHierarchyTokenizer. delimiterPositions
-
Uses of IntArrayList in org.apache.lucene.analysis.synonym
Fields in org.apache.lucene.analysis.synonym declared as IntArrayList Modifier and Type Field Description (package private) IntArrayList
SynonymMap.Builder.MapEntry. ords
-
Uses of IntArrayList in org.apache.lucene.codecs.lucene99
Methods in org.apache.lucene.codecs.lucene99 with parameters of type IntArrayList Modifier and Type Method Description (package private) static ScalarQuantizer
Lucene99ScalarQuantizedVectorsWriter. mergeQuantiles(java.util.List<ScalarQuantizer> quantizationStates, IntArrayList segmentSizes, byte bits)
-
Uses of IntArrayList in org.apache.lucene.internal.hppc
Methods in org.apache.lucene.internal.hppc that return IntArrayList Modifier and Type Method Description IntArrayList
IntArrayList. clone()
Clone this object.static IntArrayList
IntArrayList. from(int... elements)
Create a list from a variable number of arguments or an array ofint
.IntArrayList
IntArrayList. reverse()
Reverses the elements in this list and returns this list.IntArrayList
IntArrayList. sort()
Sorts the elements in this list and returns this list.Methods in org.apache.lucene.internal.hppc with parameters of type IntArrayList Modifier and Type Method Description int
IntArrayList. addAll(IntArrayList list)
Adds all elements from another list.protected boolean
IntArrayList. equalElements(IntArrayList other)
Compare index-aligned elements against anotherIntArrayList
.Constructors in org.apache.lucene.internal.hppc with parameters of type IntArrayList Constructor Description IntArrayList(IntArrayList list)
Creates a new list from the elements of another list in its iteration order. -
Uses of IntArrayList in org.apache.lucene.sandbox.document
Methods in org.apache.lucene.sandbox.document with parameters of type IntArrayList Modifier and Type Method Description private static FloatPointNearestNeighbor.NearestHit[]
FloatPointNearestNeighbor. nearest(java.util.List<PointValues> readers, java.util.List<Bits> liveDocs, IntArrayList docBases, int topN, float[] origin)
-
Uses of IntArrayList in org.apache.lucene.sandbox.search
Fields in org.apache.lucene.sandbox.search declared as IntArrayList Modifier and Type Field Description private IntArrayList
QueryProfilerTree. roots
A list of top-level "roots".Fields in org.apache.lucene.sandbox.search with type parameters of type IntArrayList Modifier and Type Field Description private java.util.ArrayList<IntArrayList>
QueryProfilerTree. tree
Maps the Query to it's list of children.Methods in org.apache.lucene.sandbox.search with parameters of type IntArrayList Modifier and Type Method Description static NearestNeighbor.NearestHit[]
NearestNeighbor. nearest(double pointLat, double pointLon, java.util.List<PointValues> readers, java.util.List<Bits> liveDocs, IntArrayList docBases, int n)
-
Uses of IntArrayList in org.apache.lucene.search
Fields in org.apache.lucene.search declared as IntArrayList Modifier and Type Field Description private IntArrayList
MultiPhraseQuery.Builder. positions
private IntArrayList
PhraseQuery.Builder. positions
-
Uses of IntArrayList in org.apache.lucene.spatial3d.geom
Fields in org.apache.lucene.spatial3d.geom declared as IntArrayList Modifier and Type Field Description private IntArrayList
GeoStandardPath.TreeBuilder. depthStack
-
Uses of IntArrayList in org.apache.lucene.util.graph
Methods in org.apache.lucene.util.graph with parameters of type IntArrayList Modifier and Type Method Description private static void
GraphTokenStreamFiniteStrings. articulationPointsRecurse(Automaton a, int state, int d, int[] depth, int[] low, int[] parent, java.util.BitSet visited, IntArrayList points)
-
Uses of IntArrayList in org.apache.lucene.util.hnsw
Fields in org.apache.lucene.util.hnsw declared as IntArrayList Modifier and Type Field Description private IntArrayList[]
OnHeapHnswGraph. levelToNodes
Constructors in org.apache.lucene.util.hnsw with parameters of type IntArrayList Constructor Description CollectionNodesIterator(IntArrayList nodes)
Constructor for iterator based on collection representing nodes
-