|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use Field | |
| org.apache.lucene.document | The Document abstraction. |
| Uses of Field in org.apache.lucene.document |
| Methods in org.apache.lucene.document that return Field | |
static Field |
Field.Keyword(java.lang.String name,
java.lang.String value)
Constructs a String-valued Field that is not tokenized, but is indexed and stored. |
static Field |
Field.UnIndexed(java.lang.String name,
java.lang.String value)
Constructs a String-valued Field that is not tokenized nor indexed, but is stored in the index, for return with hits. |
static Field |
Field.Text(java.lang.String name,
java.lang.String value)
Constructs a String-valued Field that is tokenized and indexed, and is stored in the index, for return with hits. |
static Field |
Field.Keyword(java.lang.String name,
java.util.Date value)
Constructs a Date-valued Field that is not tokenized and is indexed, and stored in the index, for return with hits. |
static Field |
Field.Text(java.lang.String name,
java.lang.String value,
boolean storeTermVector)
Constructs a String-valued Field that is tokenized and indexed, and is stored in the index, for return with hits. |
static Field |
Field.UnStored(java.lang.String name,
java.lang.String value)
Constructs a String-valued Field that is tokenized and indexed, but that is not stored in the index. |
static Field |
Field.UnStored(java.lang.String name,
java.lang.String value,
boolean storeTermVector)
Constructs a String-valued Field that is tokenized and indexed, but that is not stored in the index. |
static Field |
Field.Text(java.lang.String name,
java.io.Reader value)
Constructs a Reader-valued Field that is tokenized and indexed, but is not stored in the index verbatim. |
static Field |
Field.Text(java.lang.String name,
java.io.Reader value,
boolean storeTermVector)
Constructs a Reader-valued Field that is tokenized and indexed, but is not stored in the index verbatim. |
Field |
Document.getField(java.lang.String name)
Returns a field with the given name if any exist in this document, or null. |
Field[] |
Document.getFields(java.lang.String name)
Returns an array of Fields with the given name. |
| Methods in org.apache.lucene.document with parameters of type Field | |
void |
Document.add(Field field)
Adds a field to a document. |
|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||