Class ScriptAttributeImpl
- java.lang.Object
-
- org.apache.lucene.util.AttributeImpl
-
- org.apache.lucene.analysis.icu.tokenattributes.ScriptAttributeImpl
-
- All Implemented Interfaces:
Serializable,Cloneable,ScriptAttribute,org.apache.lucene.util.Attribute
public class ScriptAttributeImpl extends org.apache.lucene.util.AttributeImpl implements ScriptAttribute, Cloneable, Serializable
Implementation ofScriptAttributethat stores the script as an integer.- See Also:
- Serialized Form
- WARNING: This API is experimental and might change in incompatible ways in the next release.
-
-
Constructor Summary
Constructors Constructor Description ScriptAttributeImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()voidcopyTo(org.apache.lucene.util.AttributeImpl target)booleanequals(Object other)intgetCode()Get the numeric code for this script value.StringgetName()Get the full name.StringgetShortName()Get the abbreviated name.inthashCode()voidreflectWith(org.apache.lucene.util.AttributeReflector reflector)voidsetCode(int code)Set the numeric code for this script value.
-
-
-
Method Detail
-
getCode
public int getCode()
Description copied from interface:ScriptAttributeGet the numeric code for this script value. This is the constant value fromUScript.- Specified by:
getCodein interfaceScriptAttribute- Returns:
- numeric code
-
setCode
public void setCode(int code)
Description copied from interface:ScriptAttributeSet the numeric code for this script value. This is the constant value fromUScript.- Specified by:
setCodein interfaceScriptAttribute- Parameters:
code- numeric code
-
getName
public String getName()
Description copied from interface:ScriptAttributeGet the full name.- Specified by:
getNamein interfaceScriptAttribute- Returns:
- UTR #24 full name.
-
getShortName
public String getShortName()
Description copied from interface:ScriptAttributeGet the abbreviated name.- Specified by:
getShortNamein interfaceScriptAttribute- Returns:
- UTR #24 abbreviated name.
-
clear
public void clear()
- Specified by:
clearin classorg.apache.lucene.util.AttributeImpl
-
copyTo
public void copyTo(org.apache.lucene.util.AttributeImpl target)
- Specified by:
copyToin classorg.apache.lucene.util.AttributeImpl
-
reflectWith
public void reflectWith(org.apache.lucene.util.AttributeReflector reflector)
- Overrides:
reflectWithin classorg.apache.lucene.util.AttributeImpl
-
-