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.icu.tokenattributes Additional ICU-specific Attributes for text analysis. 
org.apache.lucene.analysis.ja.tokenattributes Additional Kuromoji-specific Attributes for text analysis. 
org.apache.lucene.analysis.tokenattributes Useful Attributes for text analysis. 
org.apache.lucene.facet.index.attributes Category attributes and their properties for indexing 
org.apache.lucene.queryParser.standard.config Standard Lucene Query Configuration 
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 BaseTokenStreamTestCase.CheckClearAttributesAttributeImpl
          Attribute that records if it was cleared or not.
 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 BaseTokenStreamTestCase.CheckClearAttributesAttributeImpl.copyTo(AttributeImpl target)
           
 void Token.copyTo(AttributeImpl target)
           
 

Uses of AttributeImpl in org.apache.lucene.analysis.icu.tokenattributes
 

Subclasses of AttributeImpl in org.apache.lucene.analysis.icu.tokenattributes
 class ScriptAttributeImpl
          Implementation of ScriptAttribute that stores the script as an integer.
 

Methods in org.apache.lucene.analysis.icu.tokenattributes with parameters of type AttributeImpl
 void ScriptAttributeImpl.copyTo(AttributeImpl target)
           
 

Uses of AttributeImpl in org.apache.lucene.analysis.ja.tokenattributes
 

Subclasses of AttributeImpl in org.apache.lucene.analysis.ja.tokenattributes
 class BaseFormAttributeImpl
          Attribute for Token.getBaseForm().
 class InflectionAttributeImpl
          Attribute for Kuromoji inflection data.
 class PartOfSpeechAttributeImpl
          Attribute for Token.getPartOfSpeech().
 class ReadingAttributeImpl
          Attribute for Kuromoji reading data
 

Methods in org.apache.lucene.analysis.ja.tokenattributes with parameters of type AttributeImpl
 void BaseFormAttributeImpl.copyTo(AttributeImpl target)
           
 void ReadingAttributeImpl.copyTo(AttributeImpl target)
           
 void PartOfSpeechAttributeImpl.copyTo(AttributeImpl target)
           
 void InflectionAttributeImpl.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.
 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 TermAttributeImpl
          Deprecated. This class is not used anymore. The backwards layer in AttributeFactory uses the replacement implementation.
 class TypeAttributeImpl
          A Token's lexical type.
 

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

Uses of AttributeImpl in org.apache.lucene.facet.index.attributes
 

Subclasses of AttributeImpl in org.apache.lucene.facet.index.attributes
 class CategoryAttributeImpl
          An implementation of CategoryAttribute.
 

Methods in org.apache.lucene.facet.index.attributes with parameters of type AttributeImpl
 void CategoryAttributeImpl.copyTo(AttributeImpl target)
           
 

Uses of AttributeImpl in org.apache.lucene.queryParser.standard.config
 

Subclasses of AttributeImpl in org.apache.lucene.queryParser.standard.config
 class AllowLeadingWildcardAttributeImpl
          Deprecated.  
 class AnalyzerAttributeImpl
          Deprecated.  
 class BoostAttributeImpl
          Deprecated.  
 class DateResolutionAttributeImpl
          Deprecated.  
 class DefaultOperatorAttributeImpl
          Deprecated.  
 class DefaultPhraseSlopAttributeImpl
          Deprecated.  
 class FieldBoostMapAttributeImpl
          Deprecated.  
 class FieldDateResolutionMapAttributeImpl
          Deprecated.  
 class FuzzyAttributeImpl
          Deprecated.  
 class LocaleAttributeImpl
          Deprecated.  
 class LowercaseExpandedTermsAttributeImpl
          Deprecated.  
 class MultiFieldAttributeImpl
          Deprecated.  
 class MultiTermRewriteMethodAttributeImpl
          Deprecated.  
 class PositionIncrementsAttributeImpl
          Deprecated.  
 class RangeCollatorAttributeImpl
          Deprecated.  
 

Methods in org.apache.lucene.queryParser.standard.config with parameters of type AttributeImpl
 void RangeCollatorAttributeImpl.copyTo(AttributeImpl target)
          Deprecated.  
 void LowercaseExpandedTermsAttributeImpl.copyTo(AttributeImpl target)
          Deprecated.  
 void DefaultOperatorAttributeImpl.copyTo(AttributeImpl target)
          Deprecated.  
 void AllowLeadingWildcardAttributeImpl.copyTo(AttributeImpl target)
          Deprecated.  
 void FieldDateResolutionMapAttributeImpl.copyTo(AttributeImpl target)
          Deprecated.  
 void AnalyzerAttributeImpl.copyTo(AttributeImpl target)
          Deprecated.  
 void FieldBoostMapAttributeImpl.copyTo(AttributeImpl target)
          Deprecated.  
 void MultiFieldAttributeImpl.copyTo(AttributeImpl target)
          Deprecated.  
 void DefaultPhraseSlopAttributeImpl.copyTo(AttributeImpl target)
          Deprecated.  
 void LocaleAttributeImpl.copyTo(AttributeImpl target)
          Deprecated.  
 void DateResolutionAttributeImpl.copyTo(AttributeImpl target)
          Deprecated.  
 void PositionIncrementsAttributeImpl.copyTo(AttributeImpl target)
          Deprecated.  
 void BoostAttributeImpl.copyTo(AttributeImpl target)
          Deprecated.  
 void FuzzyAttributeImpl.copyTo(AttributeImpl target)
          Deprecated.  
 void MultiTermRewriteMethodAttributeImpl.copyTo(AttributeImpl target)
          Deprecated.  
 

Uses of AttributeImpl in org.apache.lucene.util
 

Methods in org.apache.lucene.util that return AttributeImpl
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.
static
<T> void
_TestUtil.assertAttributeReflection(AttributeImpl att, Map<String,T> reflectedValues)
          Checks some basic behaviour of an AttributeImpl
abstract  void AttributeImpl.copyTo(AttributeImpl target)
          Copies the values from this Attribute into the passed-in target attribute.