public enum CompensationPeriod extends Enum<CompensationPeriod>
Enum Constant and Description |
---|
ANNUALLY |
BIWEEKLY |
DAILY_MISCELLANEOUS |
HOURLY |
MONTHLY |
QUARTERLY |
SEMIANNUALLY |
SEMIMONTHLY |
UNDEFINED |
WEEKLY |
Modifier and Type | Method and Description |
---|---|
static CompensationPeriod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompensationPeriod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompensationPeriod UNDEFINED
public static final CompensationPeriod HOURLY
public static final CompensationPeriod WEEKLY
public static final CompensationPeriod BIWEEKLY
public static final CompensationPeriod SEMIMONTHLY
public static final CompensationPeriod MONTHLY
public static final CompensationPeriod QUARTERLY
public static final CompensationPeriod SEMIANNUALLY
public static final CompensationPeriod ANNUALLY
public static final CompensationPeriod DAILY_MISCELLANEOUS
public static CompensationPeriod[] values()
for (CompensationPeriod c : CompensationPeriod.values()) System.out.println(c);
public static CompensationPeriod 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.