Uses of Interface
org.apache.solr.analytics.value.IntValueStream
-
Packages that use IntValueStream 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.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 IntValueStream in org.apache.solr.analytics.function.field
Classes in org.apache.solr.analytics.function.field that implement IntValueStream Modifier and Type Class Description classIntFieldAn 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.0 -
Uses of IntValueStream in org.apache.solr.analytics.function.mapping
Methods in org.apache.solr.analytics.function.mapping that return IntValueStream Modifier and Type Method Description static IntValueStreamLambdaFunction. createIntLambdaFunction(String name, LambdaFunction.IntInIntOutLambda lambda, IntValueStream param)Creates a function that takes in either a single or multi valued integer expression and returns the same type of expression with the given lambda function applied to every value.static IntValueStreamLambdaFunction. createIntLambdaFunction(String name, LambdaFunction.TwoIntInIntOutLambda lambda, IntValueStream param1, IntValueStream param2)Creates a function that maps two integers to a single integer.Methods in org.apache.solr.analytics.function.mapping with parameters of type IntValueStream Modifier and Type Method Description static IntValueStreamLambdaFunction. createIntLambdaFunction(String name, LambdaFunction.IntInIntOutLambda lambda, IntValueStream param)Creates a function that takes in either a single or multi valued integer expression and returns the same type of expression with the given lambda function applied to every value.static IntValueLambdaFunction. createIntLambdaFunction(String name, LambdaFunction.TwoIntInIntOutLambda lambda, IntValueStream param)Creates a function that takes in a multi-valued integer expression and returns a single-valued integer expression.static IntValueStreamLambdaFunction. createIntLambdaFunction(String name, LambdaFunction.TwoIntInIntOutLambda lambda, IntValueStream param1, IntValueStream param2)Creates a function that maps two integers to a single integer. -
Uses of IntValueStream in org.apache.solr.analytics.function.reduction.data
Constructors in org.apache.solr.analytics.function.reduction.data with parameters of type IntValueStream Constructor Description IntMaxCollector(IntValueStream param)IntMinCollector(IntValueStream param)SortedIntListCollector(IntValueStream param)UniqueIntCollector(IntValueStream param) -
Uses of IntValueStream in org.apache.solr.analytics.value
Subinterfaces of IntValueStream in org.apache.solr.analytics.value Modifier and Type Interface Description interfaceIntValueA single-valued analytics value that can be represented as an int.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.Classes in org.apache.solr.analytics.value that implement IntValueStream Modifier and Type Class Description static classIntValue.AbstractIntValueAn abstract base forIntValue.CastingIntValuethat automatically casts to all types ifIntValue.getInt()andAnalyticsValue.exists()are implemented.static classIntValueStream.AbstractIntValueStreamAn abstract base forIntValueStream.CastingIntValueStreamthat automatically casts to all types ifstreamInts(java.util.function.IntConsumer)is implemented. -
Uses of IntValueStream in org.apache.solr.analytics.value.constant
Classes in org.apache.solr.analytics.value.constant that implement IntValueStream Modifier and Type Class Description classConstantIntValueA constantIntValue.
-