
artoria.action.hanlp.SegmentResult 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;
import java.util.List;
public class SegmentResult {
private List words;
private String algorithm;
public SegmentResult(List words, String algorithm) {
this.words = words;
this.algorithm = algorithm;
}
public SegmentResult(List words) {
this.words = words;
}
public SegmentResult() {
}
public String getAlgorithm() {
return algorithm;
}
public void setAlgorithm(String algorithm) {
this.algorithm = algorithm;
}
public List getWords() {
return words;
}
public void setWords(List words) {
this.words = words;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy