Searched defs:Analyzer (Results 1 - 1 of 1) sorted by relevance

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/
H A DAnalyzer.java30 /** An Analyzer builds TokenStreams, which analyze text. It thus represents a
36 * <p>The {@code Analyzer}-API in Lucene is based on the decorator pattern.
41 public abstract class Analyzer implements Closeable { class in inherits:Closeable
43 protected Analyzer() { method in class:Analyzer
59 "Analyzer implementation classes or at least their tokenStream() and reusableTokenStream() implementations must be final";
93 throw new AlreadyClosedException("this Analyzer is closed");
108 throw new AlreadyClosedException("this Analyzer is closed");
150 /** Frees persistent resources used by this Analyzer */

Completed in 658 milliseconds