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.
|
Modifier and Type | Class and Description |
---|---|
class |
DateField
An analytics wrapper for a single-valued
TrieDateField or DatePointField with DocValues enabled. |
class |
DateMultiPointField
An analytics wrapper for a multi-valued
DatePointField with DocValues enabled. |
class |
DateMultiTrieField
Deprecated.
Trie fields are deprecated as of Solr 7.0
|
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
|
class |
LongField
An analytics wrapper for a single-valued
TrieLongField or LongPointField with DocValues enabled. |
class |
LongMultiPointField
An analytics wrapper for a multi-valued
LongPointField with DocValues enabled. |
class |
LongMultiTrieField
Deprecated.
Trie fields are deprecated as of Solr 7.0
|
Modifier and Type | Method and Description |
---|---|
static LongValueStream |
LambdaFunction.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 LongValueStream |
LambdaFunction.createLongLambdaFunction(String name,
LambdaFunction.TwoLongInLongOutLambda lambda,
LongValueStream param1,
LongValueStream param2)
Creates a function that maps two longs to a single long.
|
Modifier and Type | Method and Description |
---|---|
static LongValueStream |
LambdaFunction.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 LongValue |
LambdaFunction.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 LongValueStream |
LambdaFunction.createLongLambdaFunction(String name,
LambdaFunction.TwoLongInLongOutLambda lambda,
LongValueStream param1,
LongValueStream param2)
Creates a function that maps two longs to a single long.
|
Modifier and Type | Class and Description |
---|---|
class |
CountFunction
A 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.
|
class |
DocCountFunction
A 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.
|
class |
MissingFunction
A reduction function which returns the number of documents for which the given expression does not exist.
|
class |
UniqueFunction
A reduction function which returns the number of unique values of the given expression.
|
Constructor and Description |
---|
LongMaxCollector(LongValueStream param) |
LongMinCollector(LongValueStream param) |
SortedLongListCollector(LongValueStream param) |
UniqueLongCollector(LongValueStream param) |
Modifier and Type | Interface and Description |
---|---|
interface |
DateValue
A single-valued analytics value that can be represented as a date.
|
static interface |
DateValue.CastingDateValue
An interface that represents all of the types a
DateValue should be able to cast to. |
interface |
DateValueStream
A multi-valued analytics value that can be represented as a date.
|
static interface |
DateValueStream.CastingDateValueStream
An interface that represents all of the types a
DateValueStream should be able to cast to. |
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. |
interface |
LongValue
A single-valued analytics value that can be represented as a long.
|
static interface |
LongValue.CastingLongValue
An interface that represents all of the types a
LongValue should be able to cast to. |
static interface |
LongValueStream.CastingLongValueStream
An interface that represents all of the types a
LongValueStream should be able to cast to. |
Modifier and Type | Class and Description |
---|---|
class |
ConstantDateValue
A constant
DateValue . |
class |
ConstantIntValue
A constant
IntValue . |
class |
ConstantLongValue
A constant
LongValue . |
Copyright © 2000-2017 Apache Software Foundation. All Rights Reserved.