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

org.ggp.base.util.gdl.model.SentenceModelUtils Maven / Gradle / Ivy

package org.ggp.base.util.gdl.model;

import java.util.Set;

import org.ggp.base.util.gdl.grammar.GdlSentence;


public class SentenceModelUtils {
    private SentenceModelUtils() {
    }

    public static boolean inSentenceFormGroup(GdlSentence sentence,
                                              Set forms) {
        for(SentenceForm form : forms)
            if(form.matches(sentence))
                return true;
        return false;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy