public enum FilingTypeId extends java.lang.Enum<FilingTypeId>
| Enum Constant and Description |
|---|
EfileCheck
Denotes a return which is filed online but paid by check.
|
EFTPaper
Denotes a return is paid via EFT and filed on paper without payment.
|
ElectronicReturn
Denotes the tax return is being filed via electronic means; excludes SST electronic filing.
|
PaperReturn
Denotes the tax return is being filed on paper.
|
PhonePaper
Denotes a return is paid via phone and filed on paper without payment.
|
SER
Denotes the tax return is an SST filing.
|
SignatureReady
Denotes a return is prepared but delivered to the customer for filing and payment.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static FilingTypeId |
valueOf(int intValue) |
static FilingTypeId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilingTypeId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilingTypeId PaperReturn
public static final FilingTypeId ElectronicReturn
public static final FilingTypeId SER
public static final FilingTypeId EFTPaper
public static final FilingTypeId PhonePaper
public static final FilingTypeId SignatureReady
public static final FilingTypeId EfileCheck
public static FilingTypeId[] values()
for (FilingTypeId c : FilingTypeId.values()) System.out.println(c);
public static FilingTypeId 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 FilingTypeId valueOf(int intValue)
public int getValue()