Uses of Package
org.apache.lucene.queries.function.valuesource
-
Packages that use org.apache.lucene.queries.function.valuesource Package Description org.apache.lucene.queries.function.valuesource A variety of functions to use with FunctionQuery. -
Classes in org.apache.lucene.queries.function.valuesource used by org.apache.lucene.queries.function.valuesource Class Description BoolFunction Abstract parent class for thoseValueSource
implementations which apply boolean logic to their valuesConstNumberSource ConstNumberSource
is the base class for all constant numbersDocFreqValueSource DocFreqValueSource
returns the number of documents containing the term.DoubleFieldSource Obtains double field values fromLeafReader.getNumericDocValues(java.lang.String)
and makes those values available as other numeric types, casting as needed.DualFloatFunction AbstractValueSource
implementation which wraps two ValueSources and applies an extendible float function to their values.FieldCacheSource A base class for ValueSource implementations that retrieve values for a single field from DocValues.FloatFieldSource Obtains float field values fromLeafReader.getNumericDocValues(java.lang.String)
and makes those values available as other numeric types, casting as needed.IntFieldSource Obtains int field values fromLeafReader.getNumericDocValues(java.lang.String)
and makes those values available as other numeric types, casting as needed.LongFieldSource Obtains long field values fromLeafReader.getNumericDocValues(java.lang.String)
and makes those values available as other numeric types, casting as needed.MultiFloatFunction AbstractValueSource
implementation which wraps multiple ValueSources and applies an extendible float function to their values.MultiFunction Abstract parent class forValueSource
implementations that wrap multiple ValueSources and apply their own logic.MultiValueSource AValueSource
that abstractly representsValueSource
s for poly fields, and other things.SingleFunction A function with a single argumentTermFreqValueSource Function that returnsPostingsEnum.freq()
for the supplied term in every document.