Uses of Interface
org.apache.lucene.analysis.tokenattributes.CharTermAttribute
-
Packages that use CharTermAttribute Package Description org.apache.lucene.analysis.standard Fast, general-purpose grammar-based tokenizerStandardTokenizer
implements the Word Break rules from the Unicode Text Segmentation algorithm, as specified in Unicode Standard Annex #29.org.apache.lucene.analysis.tokenattributes General-purpose attributes for text analysis. -
-
Uses of CharTermAttribute in org.apache.lucene.analysis.standard
Methods in org.apache.lucene.analysis.standard with parameters of type CharTermAttribute Modifier and Type Method Description void
StandardTokenizerImpl. getText(CharTermAttribute t)
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 Modifier and Type Class Description class
CharTermAttributeImpl
Default implementation ofCharTermAttribute
.class
PackedTokenAttributeImpl
Default implementation of the common attributes used by Lucene:CharTermAttribute
TypeAttribute
PositionIncrementAttribute
PositionLengthAttribute
OffsetAttribute
TermFrequencyAttribute
Methods in org.apache.lucene.analysis.tokenattributes that return CharTermAttribute Modifier and Type Method Description CharTermAttribute
CharTermAttribute. append(char c)
CharTermAttribute
CharTermAttribute. append(CharSequence csq)
CharTermAttribute
CharTermAttribute. append(CharSequence csq, int start, int end)
CharTermAttribute
CharTermAttribute. append(String s)
Appends the specifiedString
to this character sequence.CharTermAttribute
CharTermAttribute. append(StringBuilder sb)
Appends the specifiedStringBuilder
to this character sequence.CharTermAttribute
CharTermAttribute. append(CharTermAttribute termAtt)
Appends the contents of the otherCharTermAttribute
to this character sequence.CharTermAttribute
CharTermAttributeImpl. append(char c)
CharTermAttribute
CharTermAttributeImpl. append(CharSequence csq)
CharTermAttribute
CharTermAttributeImpl. append(CharSequence csq, int start, int end)
CharTermAttribute
CharTermAttributeImpl. append(String s)
CharTermAttribute
CharTermAttributeImpl. append(StringBuilder s)
CharTermAttribute
CharTermAttributeImpl. append(CharTermAttribute ta)
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 Modifier and Type Method Description CharTermAttribute
CharTermAttribute. append(CharTermAttribute termAtt)
Appends the contents of the otherCharTermAttribute
to this character sequence.CharTermAttribute
CharTermAttributeImpl. append(CharTermAttribute ta)
-