
com.activitystream.aspects.demography.EthnicityStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
For a description please see https://github.com/activitystream/as-sdk-java
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