Class PositionLengthAttributeImpl
- java.lang.Object
 - 
- org.apache.lucene.util.AttributeImpl
 - 
- org.apache.lucene.analysis.tokenattributes.PositionLengthAttributeImpl
 
 
 
- 
- All Implemented Interfaces:
 java.lang.Cloneable,PositionLengthAttribute,Attribute
public class PositionLengthAttributeImpl extends AttributeImpl implements PositionLengthAttribute, java.lang.Cloneable
Default implementation ofPositionLengthAttribute. 
- 
- 
Constructor Summary
Constructors Constructor Description PositionLengthAttributeImpl()Initializes this attribute with position length of 1. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Clears the values in this AttributeImpl and resets it to its default value.voidcopyTo(AttributeImpl target)Copies the values from this Attribute into the passed-in target attribute.booleanequals(java.lang.Object other)intgetPositionLength()Returns the position length of this Token.inthashCode()voidsetPositionLength(int positionLength)Set the position length of this Token.- 
Methods inherited from class org.apache.lucene.util.AttributeImpl
clone, reflectAsString, reflectWith 
 - 
 
 - 
 
- 
- 
Method Detail
- 
setPositionLength
public void setPositionLength(int positionLength)
Description copied from interface:PositionLengthAttributeSet the position length of this Token.The default value is one.
- Specified by:
 setPositionLengthin interfacePositionLengthAttribute- Parameters:
 positionLength- how many positions this token spans.- See Also:
 PositionLengthAttribute.getPositionLength()
 
- 
getPositionLength
public int getPositionLength()
Description copied from interface:PositionLengthAttributeReturns the position length of this Token.- Specified by:
 getPositionLengthin interfacePositionLengthAttribute- See Also:
 PositionLengthAttribute.setPositionLength(int)
 
- 
clear
public void clear()
Description copied from class:AttributeImplClears the values in this AttributeImpl and resets it to its default value. If this implementation implements more than one Attribute interface it clears all.- Specified by:
 clearin classAttributeImpl
 
- 
equals
public boolean equals(java.lang.Object other)
- Overrides:
 equalsin classjava.lang.Object
 
- 
hashCode
public int hashCode()
- Overrides:
 hashCodein classjava.lang.Object
 
- 
copyTo
public void copyTo(AttributeImpl target)
Description copied from class:AttributeImplCopies the values from this Attribute into the passed-in target attribute. The target implementation must support all the Attributes this implementation supports.- Specified by:
 copyToin classAttributeImpl
 
 - 
 
 -