public static enum Price.EnumTaxType extends Enum<Price.EnumTaxType>
Modifier and Type | Method and Description |
---|---|
static Price.EnumTaxType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Price.EnumTaxType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Price.EnumTaxType Gross
public static final Price.EnumTaxType Net
public static final Price.EnumTaxType Tax
public static Price.EnumTaxType[] values()
for (Price.EnumTaxType c : Price.EnumTaxType.values()) System.out.println(c);
public static Price.EnumTaxType 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 nullCopyright © 2019. All rights reserved.