public enum TaxTypeIdentifier extends Enum<TaxTypeIdentifier> implements Parcelable
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Enum Constant and Description |
---|
CITY_SALES_TAX |
ENERGY_TAX |
FEDERAL_SALES_TAX |
GST |
LOCAL_SALES_TAX |
MUNICIPAL_SALES_TAX |
NOT_SUPPORTED |
OCCUPANCY_TAX |
OTHER_TAX |
PROVISIONAL_SALES_TAX |
ROOM_TAX |
STATE_SALES_TAX |
UNKNOWN |
VAT |
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<TaxTypeIdentifier> |
CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier and Type | Method and Description |
---|---|
int |
describeContents() |
static TaxTypeIdentifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaxTypeIdentifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
void |
writeToParcel(Parcel dest,
int flags) |
public static final TaxTypeIdentifier UNKNOWN
public static final TaxTypeIdentifier FEDERAL_SALES_TAX
public static final TaxTypeIdentifier STATE_SALES_TAX
public static final TaxTypeIdentifier CITY_SALES_TAX
public static final TaxTypeIdentifier LOCAL_SALES_TAX
public static final TaxTypeIdentifier MUNICIPAL_SALES_TAX
public static final TaxTypeIdentifier OTHER_TAX
public static final TaxTypeIdentifier VAT
public static final TaxTypeIdentifier GST
public static final TaxTypeIdentifier PROVISIONAL_SALES_TAX
public static final TaxTypeIdentifier ROOM_TAX
public static final TaxTypeIdentifier OCCUPANCY_TAX
public static final TaxTypeIdentifier ENERGY_TAX
public static final TaxTypeIdentifier NOT_SUPPORTED
public static final Parcelable.Creator<TaxTypeIdentifier> CREATOR
public static TaxTypeIdentifier[] values()
for (TaxTypeIdentifier c : TaxTypeIdentifier.values()) System.out.println(c);
public static TaxTypeIdentifier valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int describeContents()
describeContents
in interface Parcelable
public void writeToParcel(Parcel dest, int flags)
writeToParcel
in interface Parcelable