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

eu.monnetproject.nlp.stl.Termbase Maven / Gradle / Ivy

Go to download

com.github.monnetproject.translation.decomposer OSGi Bundle from the Monnet Project's translation.project project.

The newest version!
package eu.monnetproject.nlp.stl;
/**
 * A termbase to lookup terms
 * 
 * @author Tobias Wunner
 */
public interface Termbase/* extends Iterable -- iterating through every term should be avoided */ {
    /**
     * lookup a term in the termbase
     */
    boolean lookup(String term);
    /**
     * the language of the termbase
     */
    String getLanguage();
    int size();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy