Liking cljdoc? Tell your friends :D

lib.lucene.impl.analyzer


analyzercljmultimethod

creates an analyzer

(analyzer {:type :standard}) => org.apache.lucene.analysis.standard.StandardAnalyzer

creates an analyzer

(analyzer {:type :standard})
=> org.apache.lucene.analysis.standard.StandardAnalyzer
raw docstring

analyzer-char-setclj

(analyzer-char-set stop-words)
(analyzer-char-set stop-words ignore-case)

creates an analyzer char set

(analyzer-char-set []) => #{}

creates an analyzer char set

(analyzer-char-set [])
=> #{}
raw docstring

analyzer-fieldclj

(analyzer-field {:keys [default fields]})

creates a field analyzer

(analyzer-field {:type :field :default {:type :standard :stop-words []} :fields {:time {:type :keyword}}}) => org.apache.lucene.analysis.miscellaneous.PerFieldAnalyzerWrapper

creates a field analyzer

(analyzer-field {:type :field
                 :default {:type :standard
                           :stop-words []}
                 :fields {:time {:type :keyword}}})
=> org.apache.lucene.analysis.miscellaneous.PerFieldAnalyzerWrapper
raw docstring

analyzer-keywordclj

(analyzer-keyword _)

creates a keyword analyzer

(analyzer-keyword {}) => org.apache.lucene.analysis.core.KeywordAnalyzer

creates a keyword analyzer

(analyzer-keyword {})
=> org.apache.lucene.analysis.core.KeywordAnalyzer
raw docstring

analyzer-standardclj

(analyzer-standard {:keys [stop-words ignore-case]})

creates a standard analyzer

(analyzer-standard {:stop-words ["and"] :ignore-case false}) => org.apache.lucene.analysis.standard.StandardAnalyzer

creates a standard analyzer

(analyzer-standard {:stop-words ["and"]
                    :ignore-case false})
=> org.apache.lucene.analysis.standard.StandardAnalyzer
raw docstring

cljdoc builds & hosts documentation for Clojure/Script libraries

Keyboard shortcuts
Ctrl+kJump to recent docs
Move to previous article
Move to next article
Ctrl+/Jump to the search field
× close