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

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

The newest version!
package artoria.action.hanlp;

public class Word {
    private String content;
    private String nature;

    public Word(String content, String nature) {
        this.content = content;
        this.nature = nature;
    }

    public Word(String content) {

        this.content = content;
    }

    public Word() {

    }

    public String getContent() {

        return content;
    }

    public void setContent(String content) {

        this.content = content;
    }

    public String getNature() {

        return nature;
    }

    public void setNature(String nature) {

        this.nature = nature;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy