public enum EmployeeBaseStepIncreasedOn extends Enum<EmployeeBaseStepIncreasedOn>
Enum Constant and Description |
---|
ADJUSTED_HIRE_DATE |
HIRE_DATE |
MANUAL |
SENIORITY_DATE |
Modifier and Type | Method and Description |
---|---|
static EmployeeBaseStepIncreasedOn |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmployeeBaseStepIncreasedOn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmployeeBaseStepIncreasedOn HIRE_DATE
public static final EmployeeBaseStepIncreasedOn ADJUSTED_HIRE_DATE
public static final EmployeeBaseStepIncreasedOn SENIORITY_DATE
public static final EmployeeBaseStepIncreasedOn MANUAL
public static EmployeeBaseStepIncreasedOn[] values()
for (EmployeeBaseStepIncreasedOn c : EmployeeBaseStepIncreasedOn.values()) System.out.println(c);
public static EmployeeBaseStepIncreasedOn valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2010–2016. All rights reserved.