|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.lucene.index.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(java.lang.String fld,
java.lang.String txt)
Constructs a Term with the given field and text. |
Method Summary | |
int |
compareTo(java.lang.Object other)
|
int |
compareTo(Term other)
Compares two terms, returning an integer which is less than zero iff this term belongs after the argument, equal zero iff this term is equal to the argument, and greater than zero iff this term belongs after the argument. |
boolean |
equals(java.lang.Object o)
Compares two terms, returning true iff they have the same field and text. |
java.lang.String |
field()
Returns the field of this term, an interned string. |
int |
hashCode()
Combines the hashCode() of the field and the text. |
java.lang.String |
text()
Returns the text of this term. |
java.lang.String |
toString()
|
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public Term(java.lang.String fld, java.lang.String txt)
Method Detail |
public final java.lang.String field()
public final java.lang.String text()
public final boolean equals(java.lang.Object o)
public final int hashCode()
public int compareTo(java.lang.Object other)
compareTo
in interface java.lang.Comparable
public final int compareTo(Term other)
public final java.lang.String toString()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |