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 UsefulAttribute
s 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 class
Token
A 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 AttributeImpl
Token.TokenAttributeFactory. createAttributeInstance(Class<? extends Attribute> attClass)
Methods in org.apache.lucene.analysis with parameters of type AttributeImpl Modifier and Type Method Description void
Token. 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 class
CharTermAttributeImpl
The term text of a Token.class
FlagsAttributeImpl
This attribute can be used to pass different flags down the tokenizer chain, eg from one TokenFilter to another one.class
KeywordAttributeImpl
This attribute can be used to mark a token as a keyword.class
OffsetAttributeImpl
The start and end character offset of a Token.class
PayloadAttributeImpl
The payload of a Token.class
PositionIncrementAttributeImpl
The positionIncrement determines the position of this token relative to the previous Token in aTokenStream
, used in phrase searching.class
PositionLengthAttributeImpl
class
TermAttributeImpl
Deprecated.This class is not used anymore.class
TypeAttributeImpl
A Token's lexical type.Methods in org.apache.lucene.analysis.tokenattributes with parameters of type AttributeImpl Modifier and Type Method Description void
CharTermAttributeImpl. copyTo(AttributeImpl target)
void
FlagsAttributeImpl. copyTo(AttributeImpl target)
void
KeywordAttributeImpl. copyTo(AttributeImpl target)
void
OffsetAttributeImpl. copyTo(AttributeImpl target)
void
PayloadAttributeImpl. copyTo(AttributeImpl target)
void
PositionIncrementAttributeImpl. copyTo(AttributeImpl target)
void
PositionLengthAttributeImpl. copyTo(AttributeImpl target)
void
TypeAttributeImpl. 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 AttributeImpl
AttributeSource.AttributeFactory. createAttributeInstance(Class<? extends Attribute> attClass)
returns anAttributeImpl
for the suppliedAttribute
interface 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 void
AttributeSource. addAttributeImpl(AttributeImpl att)
Expert: Adds a custom AttributeImpl instance with one or more Attribute interfaces.abstract void
AttributeImpl. copyTo(AttributeImpl target)
Copies the values from this Attribute into the passed-in target attribute.
-