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

com.optimaize.langdetect.text.TextFilter Maven / Gradle / Ivy

The newest version!
package com.optimaize.langdetect.text;

/**
 * Allows to filter content from a text to be ignored for the n-gram analysis.
 *
 * 

Implementations must be immutable and stateless.

* * @author Fabian Kessler */ public interface TextFilter { String filter(CharSequence text); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy