|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.lucene.search.function.ValueSource
org.apache.lucene.search.function.ReverseOrdFieldSource
public class ReverseOrdFieldSource
Expert: obtains the ordinal of the field value from the default Lucene
FieldCache using 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")=1
WARNING: 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.
| Field Summary | |
|---|---|
String |
field
|
| Constructor Summary | |
|---|---|
ReverseOrdFieldSource(String field)
Contructor for a certain field. |
|
| Method Summary | |
|---|---|
String |
description()
description of field, used in explain() |
boolean |
equals(Object o)
Needed for possible caching of query results - used by ValueSourceQuery.equals(Object). |
DocValues |
getValues(IndexReader reader)
Return the DocValues used by the function query. |
int |
hashCode()
Needed for possible caching of query results - used by ValueSourceQuery.hashCode(). |
| Methods inherited from class org.apache.lucene.search.function.ValueSource |
|---|
toString |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public String field
| Constructor Detail |
|---|
public ReverseOrdFieldSource(String field)
field - field whose values reverse order is used.| Method Detail |
|---|
public String description()
ValueSource
description in class ValueSource
public DocValues getValues(IndexReader reader)
throws IOException
ValueSource
getValues in class ValueSourcereader - the IndexReader used to read these values.
If any caching is involved, that caching would also be IndexReader based.
IOException - for any error.public boolean equals(Object o)
ValueSourceValueSourceQuery.equals(Object).
equals in class ValueSourceObject.equals(Object)public int hashCode()
ValueSourceValueSourceQuery.hashCode().
hashCode in class ValueSourceObject.hashCode()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||