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.
|
Modifier and Type | Class and Description |
---|---|
class |
IntField
An analytics wrapper for a single-valued
TrieIntField or IntPointField with DocValues enabled. |
class |
IntMultiPointField
An analytics wrapper for a multi-valued
IntPointField with DocValues enabled. |
class |
IntMultiTrieField
Deprecated.
Trie fields are deprecated as of Solr 7.0
|
Modifier and Type | Method and Description |
---|---|
static IntValueStream |
LambdaFunction.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 IntValueStream |
LambdaFunction.createIntLambdaFunction(String name,
LambdaFunction.TwoIntInIntOutLambda lambda,
IntValueStream param1,
IntValueStream param2)
Creates a function that maps two integers to a single integer.
|
Modifier and Type | Method and Description |
---|---|
static IntValueStream |
LambdaFunction.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 IntValue |
LambdaFunction.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 IntValueStream |
LambdaFunction.createIntLambdaFunction(String name,
LambdaFunction.TwoIntInIntOutLambda lambda,
IntValueStream param1,
IntValueStream param2)
Creates a function that maps two integers to a single integer.
|
Constructor and Description |
---|
IntMaxCollector(IntValueStream param) |
IntMinCollector(IntValueStream param) |
SortedIntListCollector(IntValueStream param) |
UniqueIntCollector(IntValueStream param) |
Modifier and Type | Interface and Description |
---|---|
interface |
IntValue
A single-valued analytics value that can be represented as an int.
|
static interface |
IntValue.CastingIntValue
An interface that represents all of the types a
IntValue should be able to cast to. |
static interface |
IntValueStream.CastingIntValueStream
An interface that represents all of the types a
IntValueStream should be able to cast to. |
Modifier and Type | Class and Description |
---|---|
static class |
IntValue.AbstractIntValue
An abstract base for
IntValue.CastingIntValue that automatically casts to all types if IntValue.getInt() and AnalyticsValue.exists() are implemented. |
static class |
IntValueStream.AbstractIntValueStream
An abstract base for
IntValueStream.CastingIntValueStream that automatically casts to all types if streamInts(java.util.function.IntConsumer) is implemented. |
Modifier and Type | Class and Description |
---|---|
class |
ConstantIntValue
A constant
IntValue . |
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.