Enum TimeOffTypeValue.TimeOffTypeValueEnum
- java.lang.Object
-
- java.lang.Enum<TimeOffTypeValue.TimeOffTypeValueEnum>
-
- com.stackone.stackone_client_java.models.components.TimeOffTypeValue.TimeOffTypeValueEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TimeOffTypeValue.TimeOffTypeValueEnum>
- Enclosing class:
- TimeOffTypeValue
public static enum TimeOffTypeValue.TimeOffTypeValueEnum extends java.lang.Enum<TimeOffTypeValue.TimeOffTypeValueEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABSENTACCIDENTANNUAL_LEAVEBEREAVEMENT_LEAVEBREAKCHILD_CARE_LEAVECOMP_TIMEJURY_DUTYLEAVE_OF_ABSENCELONG_TERM_DISABILITYMATERNITY_LEAVESABBATICALSHORT_TERM_DISABILITYSICKTRAININGUNMAPPED_VALUEVACATION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringvalue()static TimeOffTypeValue.TimeOffTypeValueEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TimeOffTypeValue.TimeOffTypeValueEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SICK
public static final TimeOffTypeValue.TimeOffTypeValueEnum SICK
-
UNMAPPED_VALUE
public static final TimeOffTypeValue.TimeOffTypeValueEnum UNMAPPED_VALUE
-
VACATION
public static final TimeOffTypeValue.TimeOffTypeValueEnum VACATION
-
LONG_TERM_DISABILITY
public static final TimeOffTypeValue.TimeOffTypeValueEnum LONG_TERM_DISABILITY
-
SHORT_TERM_DISABILITY
public static final TimeOffTypeValue.TimeOffTypeValueEnum SHORT_TERM_DISABILITY
-
ABSENT
public static final TimeOffTypeValue.TimeOffTypeValueEnum ABSENT
-
COMP_TIME
public static final TimeOffTypeValue.TimeOffTypeValueEnum COMP_TIME
-
TRAINING
public static final TimeOffTypeValue.TimeOffTypeValueEnum TRAINING
-
ANNUAL_LEAVE
public static final TimeOffTypeValue.TimeOffTypeValueEnum ANNUAL_LEAVE
-
LEAVE_OF_ABSENCE
public static final TimeOffTypeValue.TimeOffTypeValueEnum LEAVE_OF_ABSENCE
-
BREAK
public static final TimeOffTypeValue.TimeOffTypeValueEnum BREAK
-
CHILD_CARE_LEAVE
public static final TimeOffTypeValue.TimeOffTypeValueEnum CHILD_CARE_LEAVE
-
MATERNITY_LEAVE
public static final TimeOffTypeValue.TimeOffTypeValueEnum MATERNITY_LEAVE
-
JURY_DUTY
public static final TimeOffTypeValue.TimeOffTypeValueEnum JURY_DUTY
-
BEREAVEMENT_LEAVE
public static final TimeOffTypeValue.TimeOffTypeValueEnum BEREAVEMENT_LEAVE
-
SABBATICAL
public static final TimeOffTypeValue.TimeOffTypeValueEnum SABBATICAL
-
ACCIDENT
public static final TimeOffTypeValue.TimeOffTypeValueEnum ACCIDENT
-
-
Method Detail
-
values
public static TimeOffTypeValue.TimeOffTypeValueEnum[] 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 (TimeOffTypeValue.TimeOffTypeValueEnum c : TimeOffTypeValue.TimeOffTypeValueEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimeOffTypeValue.TimeOffTypeValueEnum 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()
-
-