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