public class PartOfSpeechAttributeImpl extends AttributeImpl implements PartOfSpeechAttribute, java.lang.Cloneable
| Constructor and Description |
|---|
PartOfSpeechAttributeImpl() |
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Clears the values in this AttributeImpl and resets it to its
default value.
|
void |
copyTo(AttributeImpl target)
Copies the values from this Attribute into the passed-in
target attribute.
|
POS.Tag |
getLeftPOS()
Get the left part of speech of the token.
|
Dictionary.Morpheme[] |
getMorphemes()
Get the
Dictionary.Morpheme decomposition of the token. |
POS.Type |
getPOSType()
Get the
POS.Type of the token. |
POS.Tag |
getRightPOS()
Get the right part of speech of the token.
|
void |
reflectWith(AttributeReflector reflector)
This method is for introspection of attributes, it should simply
add the key/values this attribute holds to the given
AttributeReflector. |
void |
setToken(Token token)
Set the current token.
|
clone, end, reflectAsStringpublic POS.Type getPOSType()
PartOfSpeechAttributePOS.Type of the token.getPOSType in interface PartOfSpeechAttributepublic POS.Tag getLeftPOS()
PartOfSpeechAttributegetLeftPOS in interface PartOfSpeechAttributepublic POS.Tag getRightPOS()
PartOfSpeechAttributegetRightPOS in interface PartOfSpeechAttributepublic Dictionary.Morpheme[] getMorphemes()
PartOfSpeechAttributeDictionary.Morpheme decomposition of the token.getMorphemes in interface PartOfSpeechAttributepublic void setToken(Token token)
PartOfSpeechAttributesetToken in interface PartOfSpeechAttributepublic void clear()
AttributeImplclear in class AttributeImplpublic void reflectWith(AttributeReflector reflector)
AttributeImplAttributeReflector.
Implementations look like this (e.g. for a combined attribute implementation):
public void reflectWith(AttributeReflector reflector) {
reflector.reflect(CharTermAttribute.class, "term", term());
reflector.reflect(PositionIncrementAttribute.class, "positionIncrement", getPositionIncrement());
}
If you implement this method, make sure that for each invocation, the same set of Attribute
interfaces and keys are passed to AttributeReflector.reflect(java.lang.Class<? extends org.apache.lucene.util.Attribute>, java.lang.String, java.lang.Object) in the same order, but possibly
different values. So don't automatically exclude e.g. null properties!
reflectWith in class AttributeImplAttributeImpl.reflectAsString(boolean)public void copyTo(AttributeImpl target)
AttributeImplcopyTo in class AttributeImplCopyright © 2000–2025 The Apache Software Foundation. All rights reserved.