
gr.demokritos.iit.jinsect.IMatching Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JInsect Show documentation
Show all versions of JInsect Show documentation
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