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