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

Packages that use FieldSelectorResult
org.apache.lucene.document The logical representation of a Document for indexing and searching. 
 

Uses of FieldSelectorResult in org.apache.lucene.document
 

Fields in org.apache.lucene.document declared as FieldSelectorResult
static FieldSelectorResult FieldSelectorResult.LAZY_LOAD
          Lazily load this Field.
static FieldSelectorResult FieldSelectorResult.LOAD
          Load this Field every time the Document is loaded, reading in the data as it is encountered.
static FieldSelectorResult FieldSelectorResult.LOAD_AND_BREAK
          Load this field as in the LOAD case, but immediately return from Field loading for the Document.
static FieldSelectorResult FieldSelectorResult.LOAD_FOR_MERGE
          Deprecated. This is an internal option only, and is no longer needed now that CompressionTools is used for field compression.
static FieldSelectorResult FieldSelectorResult.NO_LOAD
          Do not load the Field.
static FieldSelectorResult FieldSelectorResult.SIZE
          Expert: Load the size of this Field rather than its value.
static FieldSelectorResult FieldSelectorResult.SIZE_AND_BREAK
          Expert: Like SIZE but immediately break from the field loading loop, i.e., stop loading further fields, after the size is loaded
 

Methods in org.apache.lucene.document that return FieldSelectorResult
 FieldSelectorResult SetBasedFieldSelector.accept(String fieldName)
          Indicate whether to load the field with the given name or not.
 FieldSelectorResult MapFieldSelector.accept(String field)
          Load field according to its associated value in fieldSelections
 FieldSelectorResult LoadFirstFieldSelector.accept(String fieldName)
           
 FieldSelectorResult FieldSelector.accept(String fieldName)
           
 



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