public enum FormTypeId extends java.lang.Enum<FormTypeId>
| Enum Constant and Description |
|---|
ConsumerUse
Denotes the form type is Consumer Use Tax only
|
Lodging
Denotes the form type is Lodging Tax only
|
Prepayment
Denotes the form type is Prepayment
|
PrepaymentAllowed
Denotes the form type is Prepayment Allowance
|
ResortAndRental
Denotes the form type is Resort and Rental Tax
|
Sales
Denotes the form type is Sales Tax only
|
SalesAndLodging
Denotes the form type is Sales and Lodging Tax
|
SalesAndUse
Denotes the form type is Sales and Use Tax
|
SellersUse
Denotes the form type is Sellers Use Tax only
|
TouristAndRental
Denotes the form type is Tourist and Rental Tax
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static FormTypeId |
valueOf(int intValue) |
static FormTypeId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FormTypeId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormTypeId SalesAndUse
public static final FormTypeId Sales
public static final FormTypeId SellersUse
public static final FormTypeId Lodging
public static final FormTypeId SalesAndLodging
public static final FormTypeId ConsumerUse
public static final FormTypeId ResortAndRental
public static final FormTypeId TouristAndRental
public static final FormTypeId Prepayment
public static final FormTypeId PrepaymentAllowed
public static FormTypeId[] values()
for (FormTypeId c : FormTypeId.values()) System.out.println(c);
public static FormTypeId 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 FormTypeId valueOf(int intValue)
public int getValue()