public enum AccrualType extends java.lang.Enum<AccrualType>
| Enum Constant and Description |
|---|
Accrual
An Accrual filing indicates taxes that are accrued, intended to be filed on a future tax return.
|
Filing
Filing indicates that this tax return should be filed with its tax authority by its due date.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static AccrualType |
valueOf(int intValue) |
static AccrualType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccrualType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccrualType Filing
public static final AccrualType Accrual
public static AccrualType[] values()
for (AccrualType c : AccrualType.values()) System.out.println(c);
public static AccrualType 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 AccrualType valueOf(int intValue)
public int getValue()