Uses of Class
org.apache.lucene.util.IgnoreRandomChains
-
Packages that use IgnoreRandomChains Package Description org.apache.lucene.analysis Text analysis.org.apache.lucene.analysis.boost Provides various convenience classes for creating boosts on Tokens.org.apache.lucene.analysis.cjk Analyzer for Chinese, Japanese, and Korean, which indexes bigrams.org.apache.lucene.analysis.commongrams Construct n-grams for frequently occurring terms and phrases.org.apache.lucene.analysis.core Basic, general-purpose analysis components.org.apache.lucene.analysis.ja Analyzer for Japanese.org.apache.lucene.analysis.ko Analyzer for Korean.org.apache.lucene.analysis.miscellaneous Miscellaneous Tokenstreams.org.apache.lucene.analysis.path Analysis components for path-like strings such as filenames.org.apache.lucene.analysis.phonetic Analysis components for phonetic search.org.apache.lucene.analysis.wikipedia Tokenizer that is aware of Wikipedia syntax. -
-
Uses of IgnoreRandomChains in org.apache.lucene.analysis
Classes in org.apache.lucene.analysis with annotations of type IgnoreRandomChains Modifier and Type Class Description classCachingTokenFilterThis class can be used if the token attributes of a TokenStream are intended to be consumed more than once. -
Uses of IgnoreRandomChains in org.apache.lucene.analysis.boost
Classes in org.apache.lucene.analysis.boost with annotations of type IgnoreRandomChains Modifier and Type Class Description classDelimitedBoostTokenFilterCharacters before the delimiter are the "token", those after are the boost. -
Uses of IgnoreRandomChains in org.apache.lucene.analysis.cjk
Classes in org.apache.lucene.analysis.cjk with annotations of type IgnoreRandomChains Modifier and Type Class Description classCJKBigramFilterForms bigrams of CJK terms that are generated from StandardTokenizer or ICUTokenizer. -
Uses of IgnoreRandomChains in org.apache.lucene.analysis.commongrams
Classes in org.apache.lucene.analysis.commongrams with annotations of type IgnoreRandomChains Modifier and Type Class Description classCommonGramsFilterConstruct bigrams for frequently occurring terms while indexing.classCommonGramsQueryFilterWrap a CommonGramsFilter optimizing phrase queries by only returning single words when they are not a member of a bigram. -
Uses of IgnoreRandomChains in org.apache.lucene.analysis.core
Classes in org.apache.lucene.analysis.core with annotations of type IgnoreRandomChains Modifier and Type Class Description classLowerCaseFilterNormalizes token text to lower case.classStopFilterRemoves stop words from a token stream. -
Uses of IgnoreRandomChains in org.apache.lucene.analysis.ja
Classes in org.apache.lucene.analysis.ja with annotations of type IgnoreRandomChains Modifier and Type Class Description classJapaneseCompletionFilterATokenFilterthat adds Japanese romanized tokens to the term attribute.classJapaneseIterationMarkCharFilterNormalizes Japanese horizontal iteration marks (odoriji) to their expanded form.classJapaneseNumberFilterATokenFilterthat normalizes Japanese numbers (kansūji) to regular Arabic decimal numbers in half-width characters.Constructors in org.apache.lucene.analysis.ja with annotations of type IgnoreRandomChains Constructor Description JapaneseTokenizer(AttributeFactory factory, TokenInfoDictionary systemDictionary, UnknownDictionary unkDictionary, ConnectionCosts connectionCosts, UserDictionary userDictionary, boolean discardPunctuation, boolean discardCompoundToken, JapaneseTokenizer.Mode mode)Create a new JapaneseTokenizer, supplying a custom system dictionary and unknown dictionary. -
Uses of IgnoreRandomChains in org.apache.lucene.analysis.ko
Classes in org.apache.lucene.analysis.ko with annotations of type IgnoreRandomChains Modifier and Type Class Description classKoreanNumberFilterATokenFilterthat normalizes Korean numbers to regular Arabic decimal numbers in half-width characters.classKoreanTokenizerTokenizer for Korean that uses morphological analysis.Constructors in org.apache.lucene.analysis.ko with annotations of type IgnoreRandomChains Constructor Description KoreanTokenizer(AttributeFactory factory, TokenInfoDictionary systemDictionary, UnknownDictionary unkDictionary, ConnectionCosts connectionCosts, UserDictionary userDictionary, KoreanTokenizer.DecompoundMode mode, boolean outputUnknownUnigrams, boolean discardPunctuation)Create a new KoreanTokenizer supplying a custom system dictionary and unknown dictionary. -
Uses of IgnoreRandomChains in org.apache.lucene.analysis.miscellaneous
Classes in org.apache.lucene.analysis.miscellaneous with annotations of type IgnoreRandomChains Modifier and Type Class Description classDelimitedTermFrequencyTokenFilterCharacters before the delimiter are the "token", the textual integer after is the term frequency.classHyphenatedWordsFilterWhen the plain text is extracted from documents, we will often have many words hyphenated and broken into two lines.classWordDelimiterGraphFilterSplits words into subwords and performs optional transformations on subword groups, producing a correct token graph so that e.g.Constructors in org.apache.lucene.analysis.miscellaneous with annotations of type IgnoreRandomChains Constructor Description LimitTokenCountFilter(TokenStream in, int maxTokenCount)Build a filter that only accepts tokens up to a maximum number.LimitTokenOffsetFilter(TokenStream input, int maxStartOffset)Lets all tokens pass through until it sees one with a start offset <=maxStartOffsetwhich won't pass and ends the stream.LimitTokenPositionFilter(TokenStream in, int maxTokenPosition)Build a filter that only accepts tokens up to and including the given maximum position. -
Uses of IgnoreRandomChains in org.apache.lucene.analysis.path
Classes in org.apache.lucene.analysis.path with annotations of type IgnoreRandomChains Modifier and Type Class Description classPathHierarchyTokenizerTokenizer for path-like hierarchies.classReversePathHierarchyTokenizerTokenizer for domain-like hierarchies. -
Uses of IgnoreRandomChains in org.apache.lucene.analysis.phonetic
Classes in org.apache.lucene.analysis.phonetic with annotations of type IgnoreRandomChains Modifier and Type Class Description classBeiderMorseFilterTokenFilter for Beider-Morse phonetic encoding.Constructors in org.apache.lucene.analysis.phonetic with annotations of type IgnoreRandomChains Constructor Description BeiderMorseFilter(TokenStream input, org.apache.commons.codec.language.bm.PhoneticEngine engine, org.apache.commons.codec.language.bm.Languages.LanguageSet languages)Create a new BeiderMorseFilter -
Uses of IgnoreRandomChains in org.apache.lucene.analysis.wikipedia
Classes in org.apache.lucene.analysis.wikipedia with annotations of type IgnoreRandomChains Modifier and Type Class Description classWikipediaTokenizerExtension of StandardTokenizer that is aware of Wikipedia syntax.
-