Class TypeAttributeImpl
- java.lang.Object
-
- org.apache.lucene.util.AttributeImpl
-
- org.apache.lucene.analysis.tokenattributes.TypeAttributeImpl
-
- All Implemented Interfaces:
java.lang.Cloneable,TypeAttribute,Attribute
public class TypeAttributeImpl extends AttributeImpl implements TypeAttribute, java.lang.Cloneable
Default implementation ofTypeAttribute.
-
-
Field Summary
-
Fields inherited from interface org.apache.lucene.analysis.tokenattributes.TypeAttribute
DEFAULT_TYPE
-
-
Constructor Summary
Constructors Constructor Description TypeAttributeImpl()Initialize this attribute withTypeAttribute.DEFAULT_TYPETypeAttributeImpl(java.lang.String type)Initialize this attribute withtype
-
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)inthashCode()voidsetType(java.lang.String type)Set the lexical type.java.lang.Stringtype()Returns this Token's lexical type.-
Methods inherited from class org.apache.lucene.util.AttributeImpl
clone, reflectAsString, reflectWith
-
-
-
-
Constructor Detail
-
TypeAttributeImpl
public TypeAttributeImpl()
Initialize this attribute withTypeAttribute.DEFAULT_TYPE
-
TypeAttributeImpl
public TypeAttributeImpl(java.lang.String type)
Initialize this attribute withtype
-
-
Method Detail
-
type
public java.lang.String type()
Description copied from interface:TypeAttributeReturns this Token's lexical type. Defaults to "word".- Specified by:
typein interfaceTypeAttribute- See Also:
TypeAttribute.setType(String)
-
setType
public void setType(java.lang.String type)
Description copied from interface:TypeAttributeSet the lexical type.- Specified by:
setTypein interfaceTypeAttribute- See Also:
TypeAttribute.type()
-
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
-
-