nlp.model.Pattern 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 Pattern {
private String action;
private List POSRequirementList;
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
public List getPOSRequirementList() {
return POSRequirementList;
}
public void setPOSRequirementList(List POSRequirementList) {
this.POSRequirementList = POSRequirementList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy