Uses of Class
org.apache.lucene.util.AttributeImpl
-
Packages that use AttributeImpl Package Description 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.tokenattributes
Methods in org.apache.lucene.analysis.tokenattributes that return AttributeImpl Modifier and Type Method Description AttributeImpl
BytesTermAttributeImpl. clone()
Methods in org.apache.lucene.analysis.tokenattributes with parameters of type AttributeImpl Modifier and Type Method Description void
BytesTermAttributeImpl. copyTo(AttributeImpl target)
void
CharTermAttributeImpl. copyTo(AttributeImpl target)
void
FlagsAttributeImpl. copyTo(AttributeImpl target)
void
KeywordAttributeImpl. copyTo(AttributeImpl target)
void
OffsetAttributeImpl. copyTo(AttributeImpl target)
void
PackedTokenAttributeImpl. copyTo(AttributeImpl target)
void
PayloadAttributeImpl. copyTo(AttributeImpl target)
void
PositionIncrementAttributeImpl. copyTo(AttributeImpl target)
void
PositionLengthAttributeImpl. copyTo(AttributeImpl target)
void
SentenceAttributeImpl. copyTo(AttributeImpl target)
void
TermFrequencyAttributeImpl. 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
.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
MaxNonCompetitiveBoostAttributeImpl. copyTo(AttributeImpl target)
-
Uses of AttributeImpl in org.apache.lucene.util
Classes in org.apache.lucene.util with type parameters of type AttributeImpl Modifier and Type Class Description static class
AttributeFactory.StaticImplementationAttributeFactory<A extends AttributeImpl>
Expert: AttributeFactory returning an instance of the givenclazz
for the attributes it implements.Methods in org.apache.lucene.util with type parameters of type AttributeImpl Modifier and Type Method Description static <A extends AttributeImpl>
AttributeFactoryAttributeFactory. getStaticImplementation(AttributeFactory delegate, Class<A> clazz)
Returns an AttributeFactory returning an instance of the givenclazz
for the attributes it implements.Methods in org.apache.lucene.util that return AttributeImpl Modifier and Type Method Description AttributeImpl
AttributeImpl. clone()
In most cases the clone is, and should be, deep in order to be able to properly capture the state of all attributes.abstract AttributeImpl
AttributeFactory. createAttributeInstance(Class<? extends Attribute> attClass)
Returns anAttributeImpl
for the suppliedAttribute
interface class.AttributeImpl
AttributeFactory.StaticImplementationAttributeFactory. createAttributeInstance(Class<? extends Attribute> attClass)
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.
-