org.apache.lucene.search.function
Class ReverseOrdFieldSource
- java.lang.Object
-
- org.apache.lucene.search.function.ValueSource
-
- org.apache.lucene.search.function.ReverseOrdFieldSource
-
- All Implemented Interfaces:
- java.io.Serializable
public class ReverseOrdFieldSource extends ValueSource
Expert: obtains the ordinal of the field value from the default LuceneFieldCacheusing getStringIndex() and reverses the order.The native lucene index order is used to assign an ordinal value for each field value.
Field values (terms) are lexicographically ordered by unicode value, and numbered starting at 1.
Example of reverse ordinal (rord):
If there were only three field values: "apple","banana","pear"
then rord("apple")=3, rord("banana")=2, ord("pear")=1WARNING: rord() depends on the position in an index and can thus change when other documents are inserted or deleted, or if a MultiSearcher is used.
WARNING: The status of the search.function package is experimental. The APIs introduced here might change in the future and will not be supported anymore in such a case.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description java.lang.Stringfield
-
Constructor Summary
Constructors Constructor and Description ReverseOrdFieldSource(java.lang.String field)Contructor for a certain field.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.lang.Stringdescription()description of field, used in explain()booleanequals(java.lang.Object o)Needed for possible caching of query results - used byValueSourceQuery.equals(Object).DocValuesgetValues(IndexReader reader)Return the DocValues used by the function query.inthashCode()Needed for possible caching of query results - used byValueSourceQuery.hashCode().-
Methods inherited from class org.apache.lucene.search.function.ValueSource
toString
-
-
-
-
Constructor Detail
-
ReverseOrdFieldSource
public ReverseOrdFieldSource(java.lang.String field)
Contructor for a certain field.- Parameters:
field- field whose values reverse order is used.
-
-
Method Detail
-
description
public java.lang.String description()
Description copied from class:ValueSourcedescription of field, used in explain()- Specified by:
descriptionin classValueSource
-
getValues
public DocValues getValues(IndexReader reader) throws java.io.IOException
Description copied from class:ValueSourceReturn the DocValues used by the function query.- Specified by:
getValuesin classValueSource- Parameters:
reader- the IndexReader used to read these values. If any caching is involved, that caching would also be IndexReader based.- Throws:
java.io.IOException- for any error.
-
equals
public boolean equals(java.lang.Object o)
Description copied from class:ValueSourceNeeded for possible caching of query results - used byValueSourceQuery.equals(Object).- Specified by:
equalsin classValueSource- See Also:
Object.equals(Object)
-
hashCode
public int hashCode()
Description copied from class:ValueSourceNeeded for possible caching of query results - used byValueSourceQuery.hashCode().- Specified by:
hashCodein classValueSource- See Also:
Object.hashCode()
-
-
DataMelt 3.0 © DataMelt by jWork.ORG