Save This Page
Home » lucene-2.3.2-src » org.apache » lucene » document » [javadoc | source]
org.apache.lucene.document
abstract public class: AbstractField [javadoc | source]
java.lang.Object
   org.apache.lucene.document.AbstractField

All Implemented Interfaces:
    Fieldable

Direct Known Subclasses:
    FieldForMerge, Field, LazyField

Field Summary
protected  String name     
protected  boolean storeTermVector     
protected  boolean storeOffsetWithTermVector     
protected  boolean storePositionWithTermVector     
protected  boolean omitNorms     
protected  boolean isStored     
protected  boolean isIndexed     
protected  boolean isTokenized     
protected  boolean isBinary     
protected  boolean isCompressed     
protected  boolean lazy     
protected  float boost     
protected  Object fieldsData     
Constructor:
 protected AbstractField() 
 protected AbstractField(String name,
    Field.Store store,
    Field.Index index,
    Field.TermVector termVector) 
Method from org.apache.lucene.document.AbstractField Summary:
getBoost,   getOmitNorms,   isBinary,   isCompressed,   isIndexed,   isLazy,   isStoreOffsetWithTermVector,   isStorePositionWithTermVector,   isStored,   isTermVectorStored,   isTokenized,   name,   setBoost,   setOmitNorms,   setStoreTermVector,   toString
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.lucene.document.AbstractField Detail:
 public float getBoost() 
 public boolean getOmitNorms() 
    True if norms are omitted for this indexed field
 public final boolean isBinary() 
    True iff the value of the filed is stored as binary
 public final boolean isCompressed() 
    True if the value of the field is stored and compressed within the index
 public final boolean isIndexed() 
    True iff the value of the field is to be indexed, so that it may be searched on.
 public boolean isLazy() 
 public boolean isStoreOffsetWithTermVector() 
    True iff terms are stored as term vector together with their offsets (start and end positon in source text).
 public boolean isStorePositionWithTermVector() 
    True iff terms are stored as term vector together with their token positions.
 public final boolean isStored() 
    True iff the value of the field is to be stored in the index for return with search hits. It is an error for this to be true if a field is Reader-valued.
 public final boolean isTermVectorStored() 
    True iff the term or terms used to index this field are stored as a term vector, available from org.apache.lucene.index.IndexReader#getTermFreqVector(int,String) . These methods do not provide access to the original content of the field, only to terms used to index it. If the original content must be preserved, use the stored attribute instead.
 public final boolean isTokenized() 
    True iff the value of the field should be tokenized as text prior to indexing. Un-tokenized fields are indexed as a single word and may not be Reader-valued.
 public String name() 
    Returns the name of the field as an interned string. For example "date", "title", "body", ...
 public  void setBoost(float boost) 
 public  void setOmitNorms(boolean omitNorms) 
    Expert: If set, omit normalization factors associated with this indexed field. This effectively disables indexing boosts and length normalization for this field.
 protected  void setStoreTermVector(Field.TermVector termVector) 
 public final String toString() 
    Prints a Field for human consumption.