public static enum TaxDataModel.Type extends java.lang.Enum<TaxDataModel.Type>
enumeration lists the type of tax data as string, number, or date.| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getPrettyName() |
static TaxDataModel.Type |
getTypeFromPrettyName(java.lang.String prettyName) |
static TaxDataModel.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TaxDataModel.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaxDataModel.Type STRING
public static final TaxDataModel.Type NUMBER
public static final TaxDataModel.Type DATE
public static TaxDataModel.Type[] values()
for (TaxDataModel.Type c : TaxDataModel.Type.values()) System.out.println(c);
public static TaxDataModel.Type 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 java.lang.String getPrettyName()
public static final TaxDataModel.Type getTypeFromPrettyName(java.lang.String prettyName)