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

com.activitystream.aspects.demography.EthnicityStatus 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 EthnicityStatus {
    WHITE("White"),
    HISPANIC("Hispanic"),
    AFRICAN_AMERICAN("African American"),
    NATIVE_AMERICAN("Native American"),
    ASIAN("Asian"),
    MULTIRACIAL("Multiracial"),
    OTHER("Other"),
    ;
    private final String status;

    public String getStatus() {
        return status;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy