|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.lucene.index.Term
public final class Term
A Term represents a word from text. This is the unit of search. It is composed of two elements, the text of the word, as a string, and the name of the field that the text occured in, an interned string. Note that terms may represent more than words from text fields, but also things like dates, email addresses, urls, etc.
Constructor Summary | |
---|---|
Term(String fld)
Constructs a Term with the given field and empty text. |
|
Term(String fld,
String txt)
Constructs a Term with the given field and text. |
Method Summary | |
---|---|
int |
compareTo(Object other)
|
int |
compareTo(Term other)
Compares two terms, returning a negative integer if this term belongs before the argument, zero if this term is equal to the argument, and a positive integer if this term belongs after the argument. |
Term |
createTerm(String text)
Optimized construction of new Terms by reusing same field as this Term - avoids field.intern() overhead |
boolean |
equals(Object o)
Compares two terms, returning true iff they have the same field and text. |
String |
field()
Returns the field of this term, an interned string. |
int |
hashCode()
Combines the hashCode() of the field and the text. |
String |
text()
Returns the text of this term. |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public Term(String fld, String txt)
Note that a null field or null text value results in undefined behavior for most Lucene APIs that accept a Term parameter.
public Term(String fld)
fld
- Method Detail |
---|
public final String field()
public final String text()
public Term createTerm(String text)
text
- The text of the new term (field is implicitly same as this Term instance)
public final boolean equals(Object o)
equals
in class Object
public final int hashCode()
hashCode
in class Object
public int compareTo(Object other)
compareTo
in interface Comparable
public final int compareTo(Term other)
public final String toString()
toString
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |