Uses of Interface
org.apache.solr.analytics.value.LongValueStream
-
Packages that use LongValueStream Package Description org.apache.solr.analytics.function.field Fields to use for analytics expressions.org.apache.solr.analytics.function.mapping Mapping functions to use for analytics expressions.org.apache.solr.analytics.function.reduction Reduction functions to use for analytics expressions.org.apache.solr.analytics.function.reduction.data Reduction data collectors to use while computing analytics expressions.org.apache.solr.analytics.value Value types for analytics expressions.org.apache.solr.analytics.value.constant Constant values to be used in analytics expressions. -
-
Uses of LongValueStream in org.apache.solr.analytics.function.field
Classes in org.apache.solr.analytics.function.field that implement LongValueStream Modifier and Type Class Description classDateFieldAn analytics wrapper for a single-valuedTrieDateFieldorDatePointFieldwith DocValues enabled.classDateMultiPointFieldAn analytics wrapper for a multi-valuedDatePointFieldwith DocValues enabled.classDateMultiTrieFieldDeprecated.Trie fields are deprecated as of Solr 7.0classIntFieldAn analytics wrapper for a single-valuedTrieIntFieldorIntPointFieldwith DocValues enabled.classIntMultiPointFieldAn analytics wrapper for a multi-valuedIntPointFieldwith DocValues enabled.classIntMultiTrieFieldDeprecated.Trie fields are deprecated as of Solr 7.0classLongFieldAn analytics wrapper for a single-valuedTrieLongFieldorLongPointFieldwith DocValues enabled.classLongMultiPointFieldAn analytics wrapper for a multi-valuedLongPointFieldwith DocValues enabled.classLongMultiTrieFieldDeprecated.Trie fields are deprecated as of Solr 7.0 -
Uses of LongValueStream in org.apache.solr.analytics.function.mapping
Methods in org.apache.solr.analytics.function.mapping that return LongValueStream Modifier and Type Method Description static LongValueStreamDecimalNumericConversionFunction. createDecimalConversionFunction(String name, DecimalNumericConversionFunction.ConvertFloatFunction fconv, DecimalNumericConversionFunction.ConvertDoubleFunction dconv, AnalyticsValueStream... params)Create a numeric conversion mapping function.static LongValueStreamLambdaFunction. createLongLambdaFunction(String name, LambdaFunction.LongInLongOutLambda lambda, LongValueStream param)Creates a function that takes in either a single or multi valued long expression and returns the same type of expression with the given lambda function applied to every value.static LongValueStreamLambdaFunction. createLongLambdaFunction(String name, LambdaFunction.TwoLongInLongOutLambda lambda, LongValueStream param1, LongValueStream param2)Creates a function that maps two longs to a single long.Methods in org.apache.solr.analytics.function.mapping with parameters of type LongValueStream Modifier and Type Method Description static LongValueStreamLambdaFunction. createLongLambdaFunction(String name, LambdaFunction.LongInLongOutLambda lambda, LongValueStream param)Creates a function that takes in either a single or multi valued long expression and returns the same type of expression with the given lambda function applied to every value.static LongValueLambdaFunction. createLongLambdaFunction(String name, LambdaFunction.TwoLongInLongOutLambda lambda, LongValueStream param)Creates a function that takes in a multi-valued long expression and returns a single-valued long expression.static LongValueStreamLambdaFunction. createLongLambdaFunction(String name, LambdaFunction.TwoLongInLongOutLambda lambda, LongValueStream param1, LongValueStream param2)Creates a function that maps two longs to a single long. -
Uses of LongValueStream in org.apache.solr.analytics.function.reduction
Classes in org.apache.solr.analytics.function.reduction that implement LongValueStream Modifier and Type Class Description classCountFunctionA reduction function which either counts the number of values that the parameter expression contains, or the number of documents returned if no parameter is given.classDocCountFunctionA reduction function which either counts the number of Solr Documents for which the parameter expression exists, or the number of documents returned if no parameter is given.classMissingFunctionA reduction function which returns the number of documents for which the given expression does not exist.classUniqueFunctionA reduction function which returns the number of unique values of the given expression. -
Uses of LongValueStream in org.apache.solr.analytics.function.reduction.data
Constructors in org.apache.solr.analytics.function.reduction.data with parameters of type LongValueStream Constructor Description LongMaxCollector(LongValueStream param)LongMinCollector(LongValueStream param)SortedLongListCollector(LongValueStream param)UniqueLongCollector(LongValueStream param) -
Uses of LongValueStream in org.apache.solr.analytics.value
Subinterfaces of LongValueStream in org.apache.solr.analytics.value Modifier and Type Interface Description interfaceDateValueA single-valued analytics value that can be represented as a date.static interfaceDateValue.CastingDateValueAn interface that represents all of the types aDateValueshould be able to cast to.interfaceDateValueStreamA multi-valued analytics value that can be represented as a date.static interfaceDateValueStream.CastingDateValueStreamAn interface that represents all of the types aDateValueStreamshould be able to cast to.static interfaceIntValue.CastingIntValueAn interface that represents all of the types aIntValueshould be able to cast to.static interfaceIntValueStream.CastingIntValueStreamAn interface that represents all of the types aIntValueStreamshould be able to cast to.interfaceLongValueA single-valued analytics value that can be represented as a long.static interfaceLongValue.CastingLongValueAn interface that represents all of the types aLongValueshould be able to cast to.static interfaceLongValueStream.CastingLongValueStreamAn interface that represents all of the types aLongValueStreamshould be able to cast to. -
Uses of LongValueStream in org.apache.solr.analytics.value.constant
Classes in org.apache.solr.analytics.value.constant that implement LongValueStream Modifier and Type Class Description classConstantDateValueA constantDateValue.classConstantIntValueA constantIntValue.classConstantLongValueA constantLongValue.
-