All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.codelibs.opensearch.fess.analysis.EmptyTokenizer Maven / Gradle / Ivy

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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy