|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ValueSource | |
---|---|
org.apache.solr.schema | |
org.apache.solr.search | |
org.apache.solr.search.function |
Uses of ValueSource in org.apache.solr.schema |
---|
Subclasses of ValueSource in org.apache.solr.schema | |
---|---|
class |
RandomSortField.RandomValueSource
|
Uses of ValueSource in org.apache.solr.search |
---|
Methods in org.apache.solr.search that return ValueSource | |
---|---|
abstract ValueSource |
ValueSourceParser.parse(FunctionQParser fp)
Parse the user input into a ValueSource. |
ValueSource |
FunctionQParser.parseValueSource()
Parse an individual ValueSource. |
protected ValueSource |
FunctionQParser.parseValueSource(boolean doConsumeDelimiter)
Parse an individual value source. |
Methods in org.apache.solr.search that return types with arguments of type ValueSource | |
---|---|
List<ValueSource> |
FunctionQParser.parseValueSourceList()
Parse a list of ValueSource. |
Uses of ValueSource in org.apache.solr.search.function |
---|
Subclasses of ValueSource in org.apache.solr.search.function | |
---|---|
class |
ByteFieldSource
Obtains int field values from the FieldCache
using getInts()
and makes those values available as other numeric types, casting as needed. |
class |
ConstValueSource
ConstValueSource returns a constant for all documents |
class |
DivFloatFunction
Function to divide "a" by "b" |
class |
DoubleFieldSource
Obtains float field values from the FieldCache
using getFloats()
and makes those values available as other numeric types, casting as needed. |
class |
FieldCacheSource
A base class for ValueSource implementations that retrieve values for a single field from the FieldCache . |
class |
FileFloatSource
Obtains float field values from an external file. |
class |
FloatFieldSource
Obtains float field values from the FieldCache
using getFloats()
and makes those values available as other numeric types, casting as needed. |
class |
IntFieldSource
Obtains int field values from the FieldCache
using getInts()
and makes those values available as other numeric types, casting as needed. |
class |
LinearFloatFunction
LinearFloatFunction implements a linear function over
another ValueSource . |
class |
LongFieldSource
Obtains float field values from the FieldCache
using getFloats()
and makes those values available as other numeric types, casting as needed. |
class |
MaxFloatFunction
Returns the max of a ValueSource and a float (which is useful for "bottoming out" another function at 0.0, or some positive number). |
class |
OrdFieldSource
Obtains the ordinal of the field value from the default Lucene FieldCache using getStringIndex(). |
class |
PowFloatFunction
Function to raise the base "a" to the power "b" |
class |
ProductFloatFunction
ProductFloatFunction returns the product of it's components. |
class |
QueryValueSource
QueryValueSource returns the relevance score of the query |
class |
RangeMapFloatFunction
LinearFloatFunction implements a linear function over
another ValueSource . |
class |
ReciprocalFloatFunction
ReciprocalFloatFunction implements a reciprocal function f(x) = a/(mx+b), based on
the float value of a field as exported by ValueSource . |
class |
ReverseOrdFieldSource
Obtains the ordinal of the field value from the default Lucene FieldCache using getStringIndex()
and reverses the order. |
class |
ScaleFloatFunction
Scales values to be between min and max. |
class |
ShortFieldSource
|
class |
SimpleFloatFunction
A simple float function with a single argument |
class |
SumFloatFunction
SumFloatFunction returns the sum of it's components. |
Fields in org.apache.solr.search.function declared as ValueSource | |
---|---|
protected ValueSource |
SimpleFloatFunction.source
|
protected ValueSource |
ScaleFloatFunction.source
|
protected ValueSource |
ReciprocalFloatFunction.source
|
protected ValueSource |
RangeMapFloatFunction.source
|
protected ValueSource |
MaxFloatFunction.source
|
protected ValueSource |
LinearFloatFunction.source
|
Methods in org.apache.solr.search.function that return ValueSource | |
---|---|
ValueSource |
FunctionQuery.getValueSource()
|
ValueSource |
BoostedQuery.getValueSource()
|
Constructors in org.apache.solr.search.function with parameters of type ValueSource | |
---|---|
BoostedQuery(Query subQuery,
ValueSource boostVal)
|
|
DivFloatFunction(ValueSource a,
ValueSource b)
|
|
FunctionQuery(ValueSource func)
|
|
LinearFloatFunction(ValueSource source,
float slope,
float intercept)
|
|
MaxFloatFunction(ValueSource source,
float fval)
|
|
PowFloatFunction(ValueSource a,
ValueSource b)
|
|
ProductFloatFunction(ValueSource[] sources)
|
|
RangeMapFloatFunction(ValueSource source,
float min,
float max,
float target)
|
|
ReciprocalFloatFunction(ValueSource source,
float m,
float a,
float b)
f(source) = a/(m*float(source)+b) |
|
ScaleFloatFunction(ValueSource source,
float min,
float max)
|
|
SimpleFloatFunction(ValueSource source)
|
|
SumFloatFunction(ValueSource[] sources)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |