Enum EmployeeEthnicityValue.EmployeeEthnicityValueEnum
- java.lang.Object
-
- java.lang.Enum<EmployeeEthnicityValue.EmployeeEthnicityValueEnum>
-
- com.stackone.stackone_client_java.models.components.EmployeeEthnicityValue.EmployeeEthnicityValueEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EmployeeEthnicityValue.EmployeeEthnicityValueEnum>
- Enclosing class:
- EmployeeEthnicityValue
public static enum EmployeeEthnicityValue.EmployeeEthnicityValueEnum extends java.lang.Enum<EmployeeEthnicityValue.EmployeeEthnicityValueEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AMERICAN_INDIAN_OR_ALASKA_NATIVEASIANBLACK_OR_AFRICAN_AMERICANHISPANIC_OR_LATINONATIVE_HAWAIIAN_OR_PACIFIC_ISLANDERNOT_DISCLOSEDOTHERTWO_OR_MORE_RACESUNMAPPED_VALUEWHITE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringvalue()static EmployeeEthnicityValue.EmployeeEthnicityValueEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EmployeeEthnicityValue.EmployeeEthnicityValueEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WHITE
public static final EmployeeEthnicityValue.EmployeeEthnicityValueEnum WHITE
-
BLACK_OR_AFRICAN_AMERICAN
public static final EmployeeEthnicityValue.EmployeeEthnicityValueEnum BLACK_OR_AFRICAN_AMERICAN
-
ASIAN
public static final EmployeeEthnicityValue.EmployeeEthnicityValueEnum ASIAN
-
HISPANIC_OR_LATINO
public static final EmployeeEthnicityValue.EmployeeEthnicityValueEnum HISPANIC_OR_LATINO
-
AMERICAN_INDIAN_OR_ALASKA_NATIVE
public static final EmployeeEthnicityValue.EmployeeEthnicityValueEnum AMERICAN_INDIAN_OR_ALASKA_NATIVE
-
NATIVE_HAWAIIAN_OR_PACIFIC_ISLANDER
public static final EmployeeEthnicityValue.EmployeeEthnicityValueEnum NATIVE_HAWAIIAN_OR_PACIFIC_ISLANDER
-
TWO_OR_MORE_RACES
public static final EmployeeEthnicityValue.EmployeeEthnicityValueEnum TWO_OR_MORE_RACES
-
NOT_DISCLOSED
public static final EmployeeEthnicityValue.EmployeeEthnicityValueEnum NOT_DISCLOSED
-
OTHER
public static final EmployeeEthnicityValue.EmployeeEthnicityValueEnum OTHER
-
UNMAPPED_VALUE
public static final EmployeeEthnicityValue.EmployeeEthnicityValueEnum UNMAPPED_VALUE
-
-
Method Detail
-
values
public static EmployeeEthnicityValue.EmployeeEthnicityValueEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EmployeeEthnicityValue.EmployeeEthnicityValueEnum c : EmployeeEthnicityValue.EmployeeEthnicityValueEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EmployeeEthnicityValue.EmployeeEthnicityValueEnum valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
value
public java.lang.String value()
-
-