public enum FormTypeId extends java.lang.Enum<FormTypeId>
| Enum Constant and Description |
|---|
ConsumerUse |
Lodging |
Prepayment |
PrepaymentAllowed |
ResortAndRental |
Sales |
SalesAndLodging |
SalesAndUse |
SellersUse |
TouristAndRental |
| 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()