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

com.activitystream.aspects.demography.EducationStatus Maven / Gradle / Ivy

Go to download

For a description please see https://github.com/activitystream/as-sdk-java

There is a newer version: 0.5.8
Show newest version
package com.activitystream.aspects.demography;

public enum EducationStatus {
    NO_SCHOOLING("No Schooling"),
    NURSERY_SCHOOL("Nursery school"),
    PRIMARY_SCHOOL("Primary school"),
    NO_DIPLOMA("No diploma"),
    HIGH_SCHOOL("High school"),
    ASSOCIATE_DEGREE("Associate degree"),
    BACHELOR_DEGREE("Bachelor's degree"),
    MASTER_DEGREE("Master's degree"),
    PROFESSIONAL_DEGREE("Professional degree"),
    DOCTORATE_DEGREE("Doctorate degree"),
    ;
    private final String status;

    public String getStatus() {
        return status;
    }

    EducationStatus(final String status){
        this.status = status;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy