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

gr.demokritos.iit.jinsect.IMatching Maven / Gradle / Ivy

Go to download

The JINSECT toolkit is a Java-based toolkit and library that supports and demonstrates the use of n-gram graphs within Natural Language Processing applications, ranging from summarization and summary evaluation to text classification and indexing.

The newest version!
/*
 * IMatching.java
 *
 */

package gr.demokritos.iit.jinsect;

/** Interface indicating if an object matches another (given) object.
 *
 * @author ggianna
 */
public interface IMatching {
    /** Returns true if the implementer of the interfaces matches a given object.
     *@param o1 The given object.
     *@return True if matched, else false.
     */
    public boolean match(TypeToMatch o1);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy