public enum RedeemedOfferType extends Enum<RedeemedOfferType>
| Enum Constant and Description |
|---|
LOYALTYCARD |
MANUFACTURERCOUPON |
MERCHANTCOUPON |
RESERVED |
| Modifier and Type | Method and Description |
|---|---|
static RedeemedOfferType |
fromValue(String v) |
String |
getValue() |
static RedeemedOfferType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedeemedOfferType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RedeemedOfferType MERCHANTCOUPON
public static final RedeemedOfferType LOYALTYCARD
public static final RedeemedOfferType MANUFACTURERCOUPON
public static final RedeemedOfferType RESERVED
public static RedeemedOfferType[] values()
for (RedeemedOfferType c : RedeemedOfferType.values()) System.out.println(c);
public static RedeemedOfferType 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 getValue()
public static RedeemedOfferType fromValue(String v)
Copyright © 2015. All Rights Reserved.