
artoria.action.hanlp.TextSegment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artoria-extend Show documentation
Show all versions of artoria-extend Show documentation
Artoria is a java technology framework based on the facade pattern.
The newest version!
package artoria.action.hanlp;
public class TextSegment {
private String algorithm;
private String text;
public TextSegment(String text, String algorithm) {
this.algorithm = algorithm;
this.text = text;
}
public TextSegment(String text) {
this.text = text;
}
public TextSegment() {
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public String getAlgorithm() {
return algorithm;
}
public void setAlgorithm(String algorithm) {
this.algorithm = algorithm;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy