Enum EmploymentCostCenterValue.EmploymentCostCenterValueEnum
- java.lang.Object
-
- java.lang.Enum<EmploymentCostCenterValue.EmploymentCostCenterValueEnum>
-
- com.stackone.stackone_client_java.models.components.EmploymentCostCenterValue.EmploymentCostCenterValueEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EmploymentCostCenterValue.EmploymentCostCenterValueEnum>
- Enclosing class:
- EmploymentCostCenterValue
public static enum EmploymentCostCenterValue.EmploymentCostCenterValueEnum extends java.lang.Enum<EmploymentCostCenterValue.EmploymentCostCenterValueEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COST_CENTERDEPARTMENTGROUPORGANIZATIONTEAMUNMAPPED_VALUEWORKSPACE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringvalue()static EmploymentCostCenterValue.EmploymentCostCenterValueEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EmploymentCostCenterValue.EmploymentCostCenterValueEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WORKSPACE
public static final EmploymentCostCenterValue.EmploymentCostCenterValueEnum WORKSPACE
-
TEAM
public static final EmploymentCostCenterValue.EmploymentCostCenterValueEnum TEAM
-
DEPARTMENT
public static final EmploymentCostCenterValue.EmploymentCostCenterValueEnum DEPARTMENT
-
GROUP
public static final EmploymentCostCenterValue.EmploymentCostCenterValueEnum GROUP
-
ORGANIZATION
public static final EmploymentCostCenterValue.EmploymentCostCenterValueEnum ORGANIZATION
-
UNMAPPED_VALUE
public static final EmploymentCostCenterValue.EmploymentCostCenterValueEnum UNMAPPED_VALUE
-
COST_CENTER
public static final EmploymentCostCenterValue.EmploymentCostCenterValueEnum COST_CENTER
-
-
Method Detail
-
values
public static EmploymentCostCenterValue.EmploymentCostCenterValueEnum[] 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 (EmploymentCostCenterValue.EmploymentCostCenterValueEnum c : EmploymentCostCenterValue.EmploymentCostCenterValueEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EmploymentCostCenterValue.EmploymentCostCenterValueEnum 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()
-
-