public enum OutletTypeId extends java.lang.Enum<OutletTypeId>
| Enum Constant and Description |
|---|
Consolidated
File a single return, but you must have a line item for each place of business.
|
Duplicate
You may file separate forms for each outlet; contact the tax authority for more details about location based reporting requirements.
|
None
File a single return per cycle for your entire business.
|
Schedule
You may file separate forms for each outlet; contact the tax authority for more details about location based reporting requirements.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static OutletTypeId |
valueOf(int intValue) |
static OutletTypeId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OutletTypeId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutletTypeId None
public static final OutletTypeId Schedule
public static final OutletTypeId Duplicate
public static final OutletTypeId Consolidated
public static OutletTypeId[] values()
for (OutletTypeId c : OutletTypeId.values()) System.out.println(c);
public static OutletTypeId 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 OutletTypeId valueOf(int intValue)
public int getValue()