|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectgate.creole.annic.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.
| Field Summary | |
|---|---|
(package private) String |
field
|
(package private) String |
text
|
(package private) String |
type
|
| Constructor Summary | |
|---|---|
Term(String fld,
String txt)
Constructs a Term with the given field and text. |
|
Term(String fld,
String txt,
boolean intern)
|
|
Term(String fld,
String txt,
String type)
|
|
Term(String fld,
String txt,
String type,
boolean intern)
|
|
| Method Summary | |
|---|---|
int |
compareTo(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(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. |
int |
indexCompareTo(Term other)
|
private boolean |
isWildcharMatches(String text,
String other)
|
private void |
readObject(ObjectInputStream in)
|
(package private) void |
set(String fld,
String txt)
Resets the field and text of a Term. |
(package private) void |
set(String fld,
String text,
String type)
|
String |
text()
Returns the text of this term. |
String |
toString()
|
String |
type()
|
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
String field
String text
String type
| Constructor Detail |
|---|
public Term(String fld,
String txt)
public Term(String fld,
String txt,
String type)
Term(String fld,
String txt,
String type,
boolean intern)
Term(String fld,
String txt,
boolean intern)
| Method Detail |
|---|
public final String field()
public final String type()
public final String text()
public final boolean equals(Object o)
equals in class Objectpublic final int hashCode()
hashCode in class Objectpublic int compareTo(Object other)
compareTo in interface Comparablepublic final int compareTo(Term other)
public final int indexCompareTo(Term other)
private boolean isWildcharMatches(String text,
String other)
final void set(String fld,
String txt)
final void set(String fld,
String text,
String type)
public final String toString()
toString in class Object
private void readObject(ObjectInputStream in)
throws IOException,
ClassNotFoundException
IOException
ClassNotFoundException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||