Package org.apache.lucene.analysis.th
Class ThaiTokenizer
- java.lang.Object
-
- org.apache.lucene.util.AttributeSource
-
- org.apache.lucene.analysis.TokenStream
-
- org.apache.lucene.analysis.Tokenizer
-
- org.apache.lucene.analysis.util.SegmentingTokenizerBase
-
- org.apache.lucene.analysis.th.ThaiTokenizer
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable
public class ThaiTokenizer extends SegmentingTokenizerBase
Tokenizer that useBreakIteratorto tokenize Thai text.WARNING: this tokenizer may not be supported by all JREs. It is known to work with Sun/Oracle and Harmony JREs. If your application needs to be fully portable, consider using ICUTokenizer instead, which uses an ICU Thai BreakIterator that will always be available.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.lucene.util.AttributeSource
AttributeSource.State
-
-
Field Summary
Fields Modifier and Type Field Description static booleanDBBI_AVAILABLETrue if the JRE supports a working dictionary-based breakiterator for Thai.private OffsetAttributeoffsetAttprivate static java.text.BreakIteratorproto(package private) intsentenceEndprivate static java.text.BreakIteratorsentenceProtoused for breaking the text into sentences(package private) intsentenceStartprivate CharTermAttributetermAttprivate java.text.BreakIteratorwordBreakerprivate CharArrayIteratorwrapper-
Fields inherited from class org.apache.lucene.analysis.util.SegmentingTokenizerBase
buffer, BUFFERMAX, offset
-
Fields inherited from class org.apache.lucene.analysis.TokenStream
DEFAULT_TOKEN_ATTRIBUTE_FACTORY
-
-
Constructor Summary
Constructors Constructor Description ThaiTokenizer()Creates a new ThaiTokenizerThaiTokenizer(AttributeFactory factory)Creates a new ThaiTokenizer, supplying the AttributeFactory
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleanincrementWord()Returns true if another word is availableprotected voidsetNextSentence(int sentenceStart, int sentenceEnd)Provides the next input sentence for analysis-
Methods inherited from class org.apache.lucene.analysis.util.SegmentingTokenizerBase
end, incrementToken, isSafeEnd, reset
-
Methods inherited from class org.apache.lucene.analysis.Tokenizer
close, correctOffset, setReader
-
Methods inherited from class org.apache.lucene.util.AttributeSource
addAttribute, addAttributeImpl, captureState, clearAttributes, cloneAttributes, copyTo, endAttributes, equals, getAttribute, getAttributeClassesIterator, getAttributeFactory, getAttributeImplsIterator, hasAttribute, hasAttributes, hashCode, reflectAsString, reflectWith, removeAllAttributes, restoreState, toString
-
-
-
-
Field Detail
-
DBBI_AVAILABLE
public static final boolean DBBI_AVAILABLE
True if the JRE supports a working dictionary-based breakiterator for Thai. If this is false, this tokenizer will not work at all!
-
proto
private static final java.text.BreakIterator proto
-
sentenceProto
private static final java.text.BreakIterator sentenceProto
used for breaking the text into sentences
-
wordBreaker
private final java.text.BreakIterator wordBreaker
-
wrapper
private final CharArrayIterator wrapper
-
sentenceStart
int sentenceStart
-
sentenceEnd
int sentenceEnd
-
termAtt
private final CharTermAttribute termAtt
-
offsetAtt
private final OffsetAttribute offsetAtt
-
-
Constructor Detail
-
ThaiTokenizer
public ThaiTokenizer()
Creates a new ThaiTokenizer
-
ThaiTokenizer
public ThaiTokenizer(AttributeFactory factory)
Creates a new ThaiTokenizer, supplying the AttributeFactory
-
-
Method Detail
-
setNextSentence
protected void setNextSentence(int sentenceStart, int sentenceEnd)Description copied from class:SegmentingTokenizerBaseProvides the next input sentence for analysis- Specified by:
setNextSentencein classSegmentingTokenizerBase
-
incrementWord
protected boolean incrementWord()
Description copied from class:SegmentingTokenizerBaseReturns true if another word is available- Specified by:
incrementWordin classSegmentingTokenizerBase
-
-