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

pingbu.nlp.Unit Maven / Gradle / Ivy

package pingbu.nlp;

interface Unit {
    String getId();

    interface Result extends Unit {
        String getText();

        int getLength();

        double getInnerScore();

        double compare(Unit unit);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy