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 General-purpose attributes for text analysis.org.apache.lucene.search Code to search indices.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 static class
NumericTokenStream.NumericTermAttributeImpl
Implementation ofNumericTokenStream.NumericTermAttribute
.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
NumericTokenStream.NumericTermAttributeImpl. copyTo(AttributeImpl target)
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
Default implementation ofCharTermAttribute
.class
FlagsAttributeImpl
Default implementation ofFlagsAttribute
.class
KeywordAttributeImpl
Default implementation ofKeywordAttribute
.class
OffsetAttributeImpl
Default implementation ofOffsetAttribute
.class
PayloadAttributeImpl
Default implementation ofPayloadAttribute
.class
PositionIncrementAttributeImpl
Default implementation ofPositionIncrementAttribute
.class
PositionLengthAttributeImpl
Default implementation ofPositionLengthAttribute
.class
TypeAttributeImpl
Default implementation ofTypeAttribute
.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.search
Subclasses of AttributeImpl in org.apache.lucene.search Modifier and Type Class Description class
BoostAttributeImpl
Implementation class forBoostAttribute
.static class
FuzzyTermsEnum.LevenshteinAutomataAttributeImpl
Stores compiled automata as a list (indexed by edit distance)class
MaxNonCompetitiveBoostAttributeImpl
Implementation class forMaxNonCompetitiveBoostAttribute
.Methods in org.apache.lucene.search with parameters of type AttributeImpl Modifier and Type Method Description void
BoostAttributeImpl. copyTo(AttributeImpl target)
void
FuzzyTermsEnum.LevenshteinAutomataAttributeImpl. copyTo(AttributeImpl target)
void
MaxNonCompetitiveBoostAttributeImpl. 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 AttributeImpl
AttributeImpl. clone()
Shallow clone.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.
-