Package org.apache.lucene.index
Class FieldInvertState
- java.lang.Object
 - 
- org.apache.lucene.index.FieldInvertState
 
 
- 
public final class FieldInvertState extends java.lang.ObjectThis class tracks the number and position / offset parameters of terms being added to the index. The information collected in this class is also used to calculate the normalization factor for a field. 
- 
- 
Constructor Summary
Constructors Constructor Description FieldInvertState(java.lang.String name)Creates {code FieldInvertState} for the specified field name.FieldInvertState(java.lang.String name, int position, int length, int numOverlap, int offset, float boost)Creates {code FieldInvertState} for the specified field name and values for all fields. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AttributeSourcegetAttributeSource()Returns theAttributeSourcefrom theTokenStreamthat provided the indexed tokens for this field.floatgetBoost()Get boost value.intgetLength()Get total number of terms in this field.intgetMaxTermFrequency()Get the maximum term-frequency encountered for any term in the field.java.lang.StringgetName()Return the field's nameintgetNumOverlap()Get the number of terms withpositionIncrement == 0.intgetOffset()Get end offset of the last processed term.intgetPosition()Get the last processed term position.intgetUniqueTermCount()Return the number of unique terms encountered in this field.voidsetBoost(float boost)Set boost value.voidsetLength(int length)Set length value.voidsetNumOverlap(int numOverlap)Set number of terms withpositionIncrement == 0. 
 - 
 
- 
- 
Constructor Detail
- 
FieldInvertState
public FieldInvertState(java.lang.String name)
Creates {code FieldInvertState} for the specified field name. 
- 
FieldInvertState
public FieldInvertState(java.lang.String name, int position, int length, int numOverlap, int offset, float boost)Creates {code FieldInvertState} for the specified field name and values for all fields. 
 - 
 
- 
Method Detail
- 
getPosition
public int getPosition()
Get the last processed term position.- Returns:
 - the position
 
 
- 
getLength
public int getLength()
Get total number of terms in this field.- Returns:
 - the length
 
 
- 
setLength
public void setLength(int length)
Set length value. 
- 
getNumOverlap
public int getNumOverlap()
Get the number of terms withpositionIncrement == 0.- Returns:
 - the numOverlap
 
 
- 
setNumOverlap
public void setNumOverlap(int numOverlap)
Set number of terms withpositionIncrement == 0. 
- 
getOffset
public int getOffset()
Get end offset of the last processed term.- Returns:
 - the offset
 
 
- 
getBoost
public float getBoost()
Get boost value. This is the cumulative product of document boost and field boost for all field instances sharing the same field name.- Returns:
 - the boost
 
 
- 
setBoost
public void setBoost(float boost)
Set boost value. 
- 
getMaxTermFrequency
public int getMaxTermFrequency()
Get the maximum term-frequency encountered for any term in the field. A field containing "the quick brown fox jumps over the lazy dog" would have a value of 2, because "the" appears twice. 
- 
getUniqueTermCount
public int getUniqueTermCount()
Return the number of unique terms encountered in this field. 
- 
getAttributeSource
public AttributeSource getAttributeSource()
Returns theAttributeSourcefrom theTokenStreamthat provided the indexed tokens for this field. 
- 
getName
public java.lang.String getName()
Return the field's name 
 - 
 
 -