public static enum Price.EnumPriceType extends Enum<Price.EnumPriceType>
Enum Constant and Description |
---|
Discount |
Handling |
Markup |
Other |
Product |
Shipping |
Subtotal |
Total |
Modifier and Type | Method and Description |
---|---|
static Price.EnumPriceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Price.EnumPriceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Price.EnumPriceType Discount
public static final Price.EnumPriceType Handling
public static final Price.EnumPriceType Markup
public static final Price.EnumPriceType Other
public static final Price.EnumPriceType Product
public static final Price.EnumPriceType Shipping
public static final Price.EnumPriceType Subtotal
public static final Price.EnumPriceType Total
public static Price.EnumPriceType[] values()
for (Price.EnumPriceType c : Price.EnumPriceType.values()) System.out.println(c);
public static Price.EnumPriceType 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 © 2017. All rights reserved.