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