public enum FilingFrequencyId extends java.lang.Enum<FilingFrequencyId>
Enum Constant and Description |
---|
Annually
File once per year
|
Bimonthly
File every other month
|
InverseQuarterly
File for the first two months of each quarter, then do not file on the quarterly month.
|
Monthly
File once per month
|
Occasional
File only when there are documents to report
|
Quarterly
File once per three months
|
SemiAnnually
File twice per year
|
Weekly
File every week
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static FilingFrequencyId |
valueOf(int intValue) |
static FilingFrequencyId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilingFrequencyId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilingFrequencyId Monthly
public static final FilingFrequencyId Quarterly
public static final FilingFrequencyId SemiAnnually
public static final FilingFrequencyId Annually
public static final FilingFrequencyId Bimonthly
public static final FilingFrequencyId Occasional
public static final FilingFrequencyId InverseQuarterly
public static final FilingFrequencyId Weekly
public static FilingFrequencyId[] values()
for (FilingFrequencyId c : FilingFrequencyId.values()) System.out.println(c);
public static FilingFrequencyId valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static FilingFrequencyId valueOf(int intValue)
public int getValue()