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

artoria.action.hanlp.SegmentResult Maven / Gradle / Ivy

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