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

Packages that use Field
org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index. 
org.apache.lucene.document The logical representation of a Document for indexing and searching. 
 

Uses of Field in org.apache.lucene.codecs
 

Methods in org.apache.lucene.codecs with parameters of type Field
protected  void DocValuesConsumer.mergeDoc(Field scratchField, DocValues.Source source, int docID, int sourceDoc)
          Merges a document with the given docID.
 

Uses of Field in org.apache.lucene.document
 

Subclasses of Field in org.apache.lucene.document
 class ByteDocValuesField
           Field that stores a per-document byte value for scoring, sorting or value retrieval.
 class DerefBytesDocValuesField
           Field that stores a per-document BytesRef value.
 class DoubleDocValuesField
           Field that stores a per-document double value for scoring, sorting or value retrieval.
 class DoubleField
           Field that indexes double values for efficient range filtering and sorting.
 class FloatDocValuesField
           Field that stores a per-document float value for scoring, sorting or value retrieval.
 class FloatField
           Field that indexes float values for efficient range filtering and sorting.
 class IntDocValuesField
           Field that stores a per-document int value for scoring, sorting or value retrieval.
 class IntField
           Field that indexes int values for efficient range filtering and sorting.
 class LongDocValuesField
           Field that stores a per-document long value for scoring, sorting or value retrieval.
 class LongField
           Field that indexes long values for efficient range filtering and sorting.
 class PackedLongDocValuesField
           Field that stores a per-document long value for scoring, sorting or value retrieval.
 class ShortDocValuesField
           Field that stores a per-document short value for scoring, sorting or value retrieval.
 class SortedBytesDocValuesField
           Field that stores a per-document BytesRef value, indexed for sorting.
 class StoredField
          A field whose value is stored so that IndexSearcher.doc(int) and IndexReader.document(int, org.apache.lucene.index.StoredFieldVisitor) will return the field and its value.
 class StraightBytesDocValuesField
           Field that stores a per-document BytesRef value.
 class StringField
          A field that is indexed but not tokenized: the entire String value is indexed as a single token.
 class TextField
          A field that is indexed and tokenized, without term vectors.
 



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