Class PositionLengthAttributeImpl
java.lang.Object
org.apache.lucene.util.AttributeImpl
org.apache.lucene.analysis.tokenattributes.PositionLengthAttributeImpl
- All Implemented Interfaces:
Cloneable,PositionLengthAttribute,Attribute
public class PositionLengthAttributeImpl
extends AttributeImpl
implements PositionLengthAttribute, Cloneable
Default implementation of
PositionLengthAttribute.-
Constructor Summary
ConstructorsConstructorDescriptionInitializes this attribute with position length of 1. -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()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.booleanintReturns 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
-
Constructor Details
-
PositionLengthAttributeImpl
public PositionLengthAttributeImpl()Initializes this attribute with position length of 1.
-
-
Method Details
-
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:
-
getPositionLength
public int getPositionLength()Description copied from interface:PositionLengthAttributeReturns the position length of this Token.- Specified by:
getPositionLengthin interfacePositionLengthAttribute- See Also:
-
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
-
hashCode
public int hashCode() -
copyTo
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
-