nlp.model.POSRequirement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symphony-opennlp-java Show documentation
Show all versions of symphony-opennlp-java Show documentation
Symphony OpenNLP Client provided by Symphony Platform Solutions team
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