Uses of Interface
org.apache.lucene.analysis.tokenattributes.CharTermAttribute

Packages that use CharTermAttribute
org.apache.lucene.analysis API and code to convert text into indexable/searchable tokens. 
org.apache.lucene.analysis.compound A filter that decomposes compound words you find in many Germanic languages into the word parts. 
org.apache.lucene.analysis.sinks
Implementations of the SinkTokenizer that might be useful. 
org.apache.lucene.analysis.standard Standards-based analyzers implemented with JFlex. 
org.apache.lucene.analysis.standard.std31 Backwards-compatible implementation to match Version.LUCENE_31 
org.apache.lucene.analysis.standard.std34 Backwards-compatible implementation to match Version.LUCENE_34 
org.apache.lucene.analysis.tokenattributes Useful Attributes for text analysis. 
org.apache.lucene.facet.index.streaming Expert: attributes streaming definition for indexing facets 
 

Uses of CharTermAttribute in org.apache.lucene.analysis
 

Classes in org.apache.lucene.analysis that implement CharTermAttribute
 class Token
          A Token is an occurrence of a term from the text of a field.
 

Uses of CharTermAttribute in org.apache.lucene.analysis.compound
 

Fields in org.apache.lucene.analysis.compound declared as CharTermAttribute
protected  CharTermAttribute CompoundWordTokenFilterBase.termAtt
           
 

Uses of CharTermAttribute in org.apache.lucene.analysis.sinks
 

Fields in org.apache.lucene.analysis.sinks declared as CharTermAttribute
protected  CharTermAttribute DateRecognizerSinkFilter.termAtt
           
 

Uses of CharTermAttribute in org.apache.lucene.analysis.standard
 

Methods in org.apache.lucene.analysis.standard with parameters of type CharTermAttribute
 void UAX29URLEmailTokenizerImpl.getText(CharTermAttribute t)
          Fills CharTermAttribute with the current token text.
 void StandardTokenizerImpl.getText(CharTermAttribute t)
          Fills CharTermAttribute with the current token text.
 void StandardTokenizerInterface.getText(CharTermAttribute t)
          Copies the matched text into the CharTermAttribute
 

Uses of CharTermAttribute in org.apache.lucene.analysis.standard.std31
 

Methods in org.apache.lucene.analysis.standard.std31 with parameters of type CharTermAttribute
 void StandardTokenizerImpl31.getText(CharTermAttribute t)
          Deprecated. Fills CharTermAttribute with the current token text.
 void UAX29URLEmailTokenizerImpl31.getText(CharTermAttribute t)
          Deprecated. Fills CharTermAttribute with the current token text.
 

Uses of CharTermAttribute in org.apache.lucene.analysis.standard.std34
 

Methods in org.apache.lucene.analysis.standard.std34 with parameters of type CharTermAttribute
 void UAX29URLEmailTokenizerImpl34.getText(CharTermAttribute t)
          Deprecated. Fills CharTermAttribute with the current token text.
 

Uses of CharTermAttribute in org.apache.lucene.analysis.tokenattributes
 

Classes in org.apache.lucene.analysis.tokenattributes that implement CharTermAttribute
 class CharTermAttributeImpl
          The term text of a Token.
 class TermAttributeImpl
          Deprecated. This class is not used anymore. The backwards layer in AttributeFactory uses the replacement implementation.
 

Methods in org.apache.lucene.analysis.tokenattributes that return CharTermAttribute
 CharTermAttribute CharTermAttribute.append(char c)
           
 CharTermAttribute CharTermAttributeImpl.append(char c)
           
 CharTermAttribute CharTermAttribute.append(CharSequence csq)
           
 CharTermAttribute CharTermAttributeImpl.append(CharSequence csq)
           
 CharTermAttribute CharTermAttribute.append(CharSequence csq, int start, int end)
           
 CharTermAttribute CharTermAttributeImpl.append(CharSequence csq, int start, int end)
           
 CharTermAttribute CharTermAttribute.append(CharTermAttribute termAtt)
          Appends the contents of the other CharTermAttribute to this character sequence.
 CharTermAttribute CharTermAttributeImpl.append(CharTermAttribute ta)
           
 CharTermAttribute CharTermAttribute.append(String s)
          Appends the specified String to this character sequence.
 CharTermAttribute CharTermAttributeImpl.append(String s)
           
 CharTermAttribute CharTermAttribute.append(StringBuilder sb)
          Appends the specified StringBuilder to this character sequence.
 CharTermAttribute CharTermAttributeImpl.append(StringBuilder s)
           
 CharTermAttribute CharTermAttribute.setEmpty()
          Sets the length of the termBuffer to zero.
 CharTermAttribute CharTermAttributeImpl.setEmpty()
           
 CharTermAttribute CharTermAttribute.setLength(int length)
          Set number of valid characters (length of the term) in the termBuffer array.
 CharTermAttribute CharTermAttributeImpl.setLength(int length)
           
 

Methods in org.apache.lucene.analysis.tokenattributes with parameters of type CharTermAttribute
 CharTermAttribute CharTermAttribute.append(CharTermAttribute termAtt)
          Appends the contents of the other CharTermAttribute to this character sequence.
 CharTermAttribute CharTermAttributeImpl.append(CharTermAttribute ta)
           
 

Uses of CharTermAttribute in org.apache.lucene.facet.index.streaming
 

Fields in org.apache.lucene.facet.index.streaming declared as CharTermAttribute
protected  CharTermAttribute CategoryTokenizerBase.termAttribute
          The stream's term attribute.