public static enum Storefront.DiscountApplicationTargetType extends java.lang.Enum<Storefront.DiscountApplicationTargetType>
| Enum Constant and Description |
|---|
LINE_ITEM
The discount applies onto line items.
|
SHIPPING_LINE
The discount applies onto shipping lines.
|
UNKNOWN_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static Storefront.DiscountApplicationTargetType |
fromGraphQl(java.lang.String value) |
java.lang.String |
toString() |
static Storefront.DiscountApplicationTargetType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Storefront.DiscountApplicationTargetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Storefront.DiscountApplicationTargetType LINE_ITEM
public static final Storefront.DiscountApplicationTargetType SHIPPING_LINE
public static final Storefront.DiscountApplicationTargetType UNKNOWN_VALUE
public static Storefront.DiscountApplicationTargetType[] values()
for (Storefront.DiscountApplicationTargetType c : Storefront.DiscountApplicationTargetType.values()) System.out.println(c);
public static Storefront.DiscountApplicationTargetType 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 static Storefront.DiscountApplicationTargetType fromGraphQl(java.lang.String value)
public java.lang.String toString()
toString in class java.lang.Enum<Storefront.DiscountApplicationTargetType>