Uses of Class
org.apache.lucene.document.Field

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
 Field Document.getField(String name)
          Returns a field with the given name if any exist in this document, or null.
static Field Field.Keyword(String name, String value)
          Constructs a String-valued Field that is not tokenized, but is indexed and stored.
static Field Field.UnIndexed(String name, 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(String name, 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.UnStored(String name, String value)
          Constructs a String-valued Field that is tokenized and indexed, but that is not stored in the index.
static Field Field.Text(String name, Reader value)
          Constructs a Reader-valued Field that is tokenized and indexed, but is not stored in the index verbatim.
 

Methods in org.apache.lucene.document with parameters of type Field
 void Document.add(Field field)
          Adds a field to a document.
 



Copyright © 2000-2002 Apache Software Foundation. All Rights Reserved.