public enum LoyaltyTransactionTypeEnumeration extends Enum<LoyaltyTransactionTypeEnumeration>
Java class for LoyaltyTransactionTypeEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="LoyaltyTransactionTypeEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Award"/>
<enumeration value="Rebate"/>
<enumeration value="Redemption"/>
<enumeration value="AwardRefund"/>
<enumeration value="RebateRefund"/>
<enumeration value="RedemptionRefund"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AWARD
Direct or payment related award on a loyalty account.
|
AWARD_REFUND
Refund of a loyalty award transaction.
|
REBATE
Rebate on a total amount, sale item amount, or sale items
|
REBATE_REFUND
Refund of a loyalty rebate transaction.
|
REDEMPTION
Redemption on a loyalty account.
|
REDEMPTION_REFUND
Refund of a loyalty redemption transaction.
|
| Modifier and Type | Method and Description |
|---|---|
static LoyaltyTransactionTypeEnumeration |
fromValue(String v) |
String |
value() |
static LoyaltyTransactionTypeEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoyaltyTransactionTypeEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoyaltyTransactionTypeEnumeration AWARD
public static final LoyaltyTransactionTypeEnumeration REBATE
public static final LoyaltyTransactionTypeEnumeration REDEMPTION
public static final LoyaltyTransactionTypeEnumeration AWARD_REFUND
public static final LoyaltyTransactionTypeEnumeration REBATE_REFUND
public static final LoyaltyTransactionTypeEnumeration REDEMPTION_REFUND
public static LoyaltyTransactionTypeEnumeration[] values()
for (LoyaltyTransactionTypeEnumeration c : LoyaltyTransactionTypeEnumeration.values()) System.out.println(c);
public static LoyaltyTransactionTypeEnumeration 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 String value()
public static LoyaltyTransactionTypeEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.