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.
 Field[] Document.getFields(String name)
          Returns an array of Fields with the given name.
static Field Field.Keyword(String name, String value)
          Deprecated. use Field(name, value, Field.Store.YES, Field.Index.UN_TOKENIZED) instead
static Field Field.UnIndexed(String name, String value)
          Deprecated. use Field(name, value, Field.Store.YES, Field.Index.NO) instead
static Field Field.Text(String name, String value)
          Deprecated. use Field(name, value, Field.Store.YES, Field.Index.TOKENIZED) instead
static Field Field.Keyword(String name, Date value)
          Deprecated. use Field(name, value, Field.Store.YES, Field.Index.UN_TOKENIZED) instead
static Field Field.Text(String name, String value, boolean storeTermVector)
          Deprecated. use Field(name, value, Field.Store.YES, Field.Index.TOKENIZED, storeTermVector) instead
static Field Field.UnStored(String name, String value)
          Deprecated. use Field(name, value, Field.Store.NO, Field.Index.TOKENIZED) instead
static Field Field.UnStored(String name, String value, boolean storeTermVector)
          Deprecated. use Field(name, value, Field.Store.NO, Field.Index.TOKENIZED, storeTermVector) instead
static Field Field.Text(String name, Reader value)
          Deprecated. use Field(name, value) instead
static Field Field.Text(String name, Reader value, boolean storeTermVector)
          Deprecated. use Field(name, value, storeTermVector) instead
 

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



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