Class IntMultiTrieField
- java.lang.Object
-
- org.apache.solr.analytics.function.field.AnalyticsField
-
- org.apache.solr.analytics.function.field.IntMultiTrieField
-
- All Implemented Interfaces:
AnalyticsValueStream
,DoubleValueStream
,FloatValueStream
,IntValueStream
,IntValueStream.CastingIntValueStream
,LongValueStream
,StringValueStream
@Deprecated public class IntMultiTrieField extends AnalyticsField implements IntValueStream.CastingIntValueStream
Deprecated.Trie fields are deprecated as of Solr 7.0An analytics wrapper for a multi-valuedTrieIntField
with DocValues enabled.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.solr.analytics.value.AnalyticsValueStream
AnalyticsValueStream.AbstractAnalyticsValueStream, AnalyticsValueStream.ExpressionType
-
Nested classes/interfaces inherited from interface org.apache.solr.analytics.value.DoubleValueStream
DoubleValueStream.AbstractDoubleValueStream, DoubleValueStream.CastingDoubleValueStream
-
Nested classes/interfaces inherited from interface org.apache.solr.analytics.value.FloatValueStream
FloatValueStream.AbstractFloatValueStream, FloatValueStream.CastingFloatValueStream
-
Nested classes/interfaces inherited from interface org.apache.solr.analytics.value.IntValueStream
IntValueStream.AbstractIntValueStream, IntValueStream.CastingIntValueStream
-
Nested classes/interfaces inherited from interface org.apache.solr.analytics.value.LongValueStream
LongValueStream.AbstractLongValueStream, LongValueStream.CastingLongValueStream
-
Nested classes/interfaces inherited from interface org.apache.solr.analytics.value.StringValueStream
StringValueStream.AbstractStringValueStream, StringValueStream.CastingStringValueStream
-
-
Field Summary
-
Fields inherited from class org.apache.solr.analytics.function.field.AnalyticsField
fieldName, initialArrayLength
-
-
Constructor Summary
Constructors Constructor Description IntMultiTrieField(String fieldName)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
collect(int doc)
Deprecated.Collect the value(s) of the wrapped field for the given document, and store the value.void
doSetNextReader(org.apache.lucene.index.LeafReaderContext context)
Deprecated.Set the segment reader contextvoid
streamDoubles(DoubleConsumer cons)
Deprecated.Stream the double representations of all current values, if any exist.void
streamFloats(FloatConsumer cons)
Deprecated.Stream the float representations of all current values, if any exist.void
streamInts(IntConsumer cons)
Deprecated.Stream the int representations of all current values, if any exist.void
streamLongs(LongConsumer cons)
Deprecated.Stream the long representations of all current values, if any exist.void
streamObjects(Consumer<Object> cons)
Deprecated.Stream the object representations of all current values, if any exist.void
streamStrings(Consumer<String> cons)
Deprecated.Stream the String representations of all current values, if any exist.-
Methods inherited from class org.apache.solr.analytics.function.field.AnalyticsField
convertToConstant, getExpressionStr, getExpressionType, getName
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.solr.analytics.value.AnalyticsValueStream
convertToConstant, getExpressionStr, getExpressionType, getName
-
-
-
-
Constructor Detail
-
IntMultiTrieField
public IntMultiTrieField(String fieldName)
Deprecated.
-
-
Method Detail
-
doSetNextReader
public void doSetNextReader(org.apache.lucene.index.LeafReaderContext context) throws IOException
Deprecated.Description copied from class:AnalyticsField
Set the segment reader context- Specified by:
doSetNextReader
in classAnalyticsField
- Parameters:
context
- segment context- Throws:
IOException
- if an error occurs while loading the leaf reader
-
collect
public void collect(int doc) throws IOException
Deprecated.Description copied from class:AnalyticsField
Collect the value(s) of the wrapped field for the given document, and store the value.- Specified by:
collect
in classAnalyticsField
- Parameters:
doc
- ID of the document to collect- Throws:
IOException
- if an error occurs while reading the document.
-
streamInts
public void streamInts(IntConsumer cons)
Deprecated.Description copied from interface:IntValueStream
Stream the int representations of all current values, if any exist.- Specified by:
streamInts
in interfaceIntValueStream
- Parameters:
cons
- The consumer to accept the values
-
streamLongs
public void streamLongs(LongConsumer cons)
Deprecated.Description copied from interface:LongValueStream
Stream the long representations of all current values, if any exist.- Specified by:
streamLongs
in interfaceLongValueStream
- Parameters:
cons
- The consumer to accept the values
-
streamFloats
public void streamFloats(FloatConsumer cons)
Deprecated.Description copied from interface:FloatValueStream
Stream the float representations of all current values, if any exist.- Specified by:
streamFloats
in interfaceFloatValueStream
- Parameters:
cons
- The consumer to accept the values
-
streamDoubles
public void streamDoubles(DoubleConsumer cons)
Deprecated.Description copied from interface:DoubleValueStream
Stream the double representations of all current values, if any exist.- Specified by:
streamDoubles
in interfaceDoubleValueStream
- Parameters:
cons
- The consumer to accept the values
-
streamStrings
public void streamStrings(Consumer<String> cons)
Deprecated.Description copied from interface:StringValueStream
Stream the String representations of all current values, if any exist.- Specified by:
streamStrings
in interfaceStringValueStream
- Parameters:
cons
- The consumer to accept the values
-
streamObjects
public void streamObjects(Consumer<Object> cons)
Deprecated.Description copied from interface:AnalyticsValueStream
Stream the object representations of all current values, if any exist.- Specified by:
streamObjects
in interfaceAnalyticsValueStream
- Parameters:
cons
- The consumer to accept the values
-
-