public static enum EmployeeLeaveType.ScheduleOfAccrualEnum extends Enum<EmployeeLeaveType.ScheduleOfAccrualEnum>
| Enum Constant and Description |
|---|
BEGINNINGOFCALENDARYEAR |
EACHPAYPERIOD |
ONANNIVERSARYDATE |
ONHOURWORKED |
| Modifier and Type | Method and Description |
|---|---|
static EmployeeLeaveType.ScheduleOfAccrualEnum |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static EmployeeLeaveType.ScheduleOfAccrualEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmployeeLeaveType.ScheduleOfAccrualEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmployeeLeaveType.ScheduleOfAccrualEnum BEGINNINGOFCALENDARYEAR
public static final EmployeeLeaveType.ScheduleOfAccrualEnum ONANNIVERSARYDATE
public static final EmployeeLeaveType.ScheduleOfAccrualEnum EACHPAYPERIOD
public static final EmployeeLeaveType.ScheduleOfAccrualEnum ONHOURWORKED
public static EmployeeLeaveType.ScheduleOfAccrualEnum[] values()
for (EmployeeLeaveType.ScheduleOfAccrualEnum c : EmployeeLeaveType.ScheduleOfAccrualEnum.values()) System.out.println(c);
public static EmployeeLeaveType.ScheduleOfAccrualEnum 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 nullpublic String getValue()
public String toString()
toString in class Enum<EmployeeLeaveType.ScheduleOfAccrualEnum>public static EmployeeLeaveType.ScheduleOfAccrualEnum fromValue(String value)
Copyright © 2020. All rights reserved.