Uses of Class
org.apache.lucene.util.AttributeImpl

Packages that use AttributeImpl
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.codecs.pulsing Pulsing Codec: inlines low frequency terms' postings into terms dictionary. 
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
static class NumericTokenStream.NumericTermAttributeImpl
          Implementation of NumericTokenStream.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
 AttributeImpl Token.TokenAttributeFactory.createAttributeInstance(Class<? extends Attribute> attClass)
           
 

Methods in org.apache.lucene.analysis with parameters of type AttributeImpl
 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
 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 represented as BytesRef.
 class PositionIncrementAttributeImpl
          The positionIncrement determines the position of this token relative to the previous Token in a TokenStream, used in phrase searching.
 class PositionLengthAttributeImpl
          See PositionLengthAttribute.
 class TypeAttributeImpl
          A Token's lexical type.
 

Methods in org.apache.lucene.analysis.tokenattributes with parameters of type AttributeImpl
 void CharTermAttributeImpl.copyTo(AttributeImpl target)
           
 void KeywordAttributeImpl.copyTo(AttributeImpl target)
           
 void PayloadAttributeImpl.copyTo(AttributeImpl target)
           
 void FlagsAttributeImpl.copyTo(AttributeImpl target)
           
 void OffsetAttributeImpl.copyTo(AttributeImpl target)
           
 void PositionLengthAttributeImpl.copyTo(AttributeImpl target)
           
 void TypeAttributeImpl.copyTo(AttributeImpl target)
           
 void PositionIncrementAttributeImpl.copyTo(AttributeImpl target)
           
 

Uses of AttributeImpl in org.apache.lucene.codecs.pulsing
 

Subclasses of AttributeImpl in org.apache.lucene.codecs.pulsing
static class PulsingPostingsReader.PulsingEnumAttributeImpl
          Implementation of PulsingPostingsReader.PulsingEnumAttribute for reuse of wrapped postings readers underneath pulsing.
 

Methods in org.apache.lucene.codecs.pulsing with parameters of type AttributeImpl
 void PulsingPostingsReader.PulsingEnumAttributeImpl.copyTo(AttributeImpl target)
           
 

Uses of AttributeImpl in org.apache.lucene.search
 

Subclasses of AttributeImpl in org.apache.lucene.search
 class BoostAttributeImpl
          Implementation class for BoostAttribute.
static class FuzzyTermsEnum.LevenshteinAutomataAttributeImpl
           
 class MaxNonCompetitiveBoostAttributeImpl
          Implementation class for MaxNonCompetitiveBoostAttribute.
 

Methods in org.apache.lucene.search with parameters of type AttributeImpl
 void FuzzyTermsEnum.LevenshteinAutomataAttributeImpl.copyTo(AttributeImpl target)
           
 void MaxNonCompetitiveBoostAttributeImpl.copyTo(AttributeImpl target)
           
 void BoostAttributeImpl.copyTo(AttributeImpl target)
           
 

Uses of AttributeImpl in org.apache.lucene.util
 

Methods in org.apache.lucene.util that return AttributeImpl
 AttributeImpl AttributeImpl.clone()
          Shallow clone.
abstract  AttributeImpl AttributeSource.AttributeFactory.createAttributeInstance(Class<? extends Attribute> attClass)
          returns an AttributeImpl for the supplied Attribute interface class.
 

Methods in org.apache.lucene.util that return types with arguments of type AttributeImpl
 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
 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.
 



Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.