Class DateMultiTrieField
- java.lang.Object
-
- org.apache.solr.analytics.function.field.AnalyticsField
-
- org.apache.solr.analytics.function.field.LongMultiTrieField
-
- org.apache.solr.analytics.function.field.DateMultiTrieField
-
- All Implemented Interfaces:
AnalyticsValueStream
,DateValueStream
,DateValueStream.CastingDateValueStream
,DoubleValueStream
,LongValueStream
,LongValueStream.CastingLongValueStream
,StringValueStream
@Deprecated public class DateMultiTrieField extends LongMultiTrieField implements DateValueStream.CastingDateValueStream
Deprecated.Trie fields are deprecated as of Solr 7.0An analytics wrapper for a multi-valuedTrieDateField
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.DateValueStream
DateValueStream.AbstractDateValueStream, DateValueStream.CastingDateValueStream
-
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.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 DateMultiTrieField(String fieldName)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
streamDates(Consumer<Date> cons)
Deprecated.Stream the date 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.LongMultiTrieField
collect, doSetNextReader, streamDoubles, streamLongs
-
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
-
Methods inherited from interface org.apache.solr.analytics.value.LongValueStream
streamLongs
-
-
-
-
Constructor Detail
-
DateMultiTrieField
public DateMultiTrieField(String fieldName)
Deprecated.
-
-
Method Detail
-
streamDates
public void streamDates(Consumer<Date> cons)
Deprecated.Description copied from interface:DateValueStream
Stream the date representations of all current values, if any exist.- Specified by:
streamDates
in interfaceDateValueStream
- 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
- Overrides:
streamStrings
in classLongMultiTrieField
- 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
- Overrides:
streamObjects
in classLongMultiTrieField
- Parameters:
cons
- The consumer to accept the values
-
-