org.codelibs.opensearch.fess.analysis.EmptyTokenizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opensearch-analysis-fess Show documentation
Show all versions of opensearch-analysis-fess Show documentation
This plugin provides an analysis library for Fess.
The newest version!
package org.codelibs.opensearch.fess.analysis;
import java.io.IOException;
import org.apache.lucene.analysis.Tokenizer;
public class EmptyTokenizer extends Tokenizer {
@Override
public final boolean incrementToken() throws IOException {
return false;
}
}