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

nlp.model.POSRequirement Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package nlp.model;

import java.util.List;

public class POSRequirement {
    private String POS;
    private List options;
    private String parameter;
    private String value;


    public List getOptions() {
        return options;
    }

    public void setOptions(List options) {
        this.options = options;
    }

    public POSRequirement() {
    }

    public POSRequirement(String POS, List options) {
        this.POS = POS;
        this.options = options;
    }



    public String getPOS() {
        return POS;
    }

    public void setPOS(String POS) {
        this.POS = POS;
    }

    public POSRequirement(String POS, List options, String parameter) {
        this.POS = POS;
        this.options = options;
        this.parameter = parameter;
    }

    public String getParameter() {
        return parameter;
    }

    public void setParameter(String parameter) {
        this.parameter = parameter;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy