public static enum LineItem.TaxCategoryEnum extends Enum<LineItem.TaxCategoryEnum>
| Modifier and Type | Class and Description |
|---|---|
static class |
LineItem.TaxCategoryEnum.Adapter |
| Modifier and Type | Method and Description |
|---|---|
static LineItem.TaxCategoryEnum |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static LineItem.TaxCategoryEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineItem.TaxCategoryEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineItem.TaxCategoryEnum HIGH
public static final LineItem.TaxCategoryEnum LOW
public static final LineItem.TaxCategoryEnum NONE
public static final LineItem.TaxCategoryEnum ZERO
public static LineItem.TaxCategoryEnum[] values()
for (LineItem.TaxCategoryEnum c : LineItem.TaxCategoryEnum.values()) System.out.println(c);
public static LineItem.TaxCategoryEnum 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 static LineItem.TaxCategoryEnum fromValue(String text)
public String getValue()
public String toString()
toString in class Enum<LineItem.TaxCategoryEnum>Copyright © 2022. All rights reserved.