Uses of Class
org.apache.lucene.util.AttributeImpl
-
Packages that use AttributeImpl Package Description org.apache.lucene.analysis API and code to convert text into indexable/searchable tokens.org.apache.lucene.analysis.tokenattributes UsefulAttributes for text analysis.org.apache.lucene.util Some utility classes. -
-
Uses of AttributeImpl in org.apache.lucene.analysis
Subclasses of AttributeImpl in org.apache.lucene.analysis Modifier and Type Class Description classTokenA Token is an occurrence of a term from the text of a field.Methods in org.apache.lucene.analysis that return AttributeImpl Modifier and Type Method Description AttributeImplToken.TokenAttributeFactory. createAttributeInstance(Class<? extends Attribute> attClass)Methods in org.apache.lucene.analysis with parameters of type AttributeImpl Modifier and Type Method Description voidToken. copyTo(AttributeImpl target) -
Uses of AttributeImpl in org.apache.lucene.analysis.tokenattributes
Subclasses of AttributeImpl in org.apache.lucene.analysis.tokenattributes Modifier and Type Class Description classCharTermAttributeImplThe term text of a Token.classFlagsAttributeImplThis attribute can be used to pass different flags down the tokenizer chain, eg from one TokenFilter to another one.classKeywordAttributeImplThis attribute can be used to mark a token as a keyword.classOffsetAttributeImplThe start and end character offset of a Token.classPayloadAttributeImplThe payload of a Token.classPositionIncrementAttributeImplThe positionIncrement determines the position of this token relative to the previous Token in aTokenStream, used in phrase searching.classPositionLengthAttributeImplclassTermAttributeImplDeprecated.This class is not used anymore.classTypeAttributeImplA Token's lexical type.Methods in org.apache.lucene.analysis.tokenattributes with parameters of type AttributeImpl Modifier and Type Method Description voidCharTermAttributeImpl. copyTo(AttributeImpl target)voidFlagsAttributeImpl. copyTo(AttributeImpl target)voidKeywordAttributeImpl. copyTo(AttributeImpl target)voidOffsetAttributeImpl. copyTo(AttributeImpl target)voidPayloadAttributeImpl. copyTo(AttributeImpl target)voidPositionIncrementAttributeImpl. copyTo(AttributeImpl target)voidPositionLengthAttributeImpl. copyTo(AttributeImpl target)voidTypeAttributeImpl. copyTo(AttributeImpl target) -
Uses of AttributeImpl in org.apache.lucene.util
Methods in org.apache.lucene.util that return AttributeImpl Modifier and Type Method Description abstract AttributeImplAttributeSource.AttributeFactory. createAttributeInstance(Class<? extends Attribute> attClass)returns anAttributeImplfor the suppliedAttributeinterface class.Methods in org.apache.lucene.util that return types with arguments of type AttributeImpl Modifier and Type Method Description Iterator<AttributeImpl>AttributeSource. getAttributeImplsIterator()Returns a new iterator that iterates all unique Attribute implementations.Methods in org.apache.lucene.util with parameters of type AttributeImpl Modifier and Type Method Description voidAttributeSource. addAttributeImpl(AttributeImpl att)Expert: Adds a custom AttributeImpl instance with one or more Attribute interfaces.abstract voidAttributeImpl. copyTo(AttributeImpl target)Copies the values from this Attribute into the passed-in target attribute.
-