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