public enum ButtonTypeType extends Enum<ButtonTypeType>
| Enum Constant and Description |
|---|
AUTOBILLING |
BUYNOW |
CART |
DONATE |
GIFTCERTIFICATE |
PAYMENT |
PAYMENTPLAN |
SUBSCRIBE |
UNSUBSCRIBE |
VIEWCART |
| Modifier and Type | Method and Description |
|---|---|
static ButtonTypeType |
fromValue(String v) |
String |
getValue() |
static ButtonTypeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ButtonTypeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ButtonTypeType BUYNOW
public static final ButtonTypeType CART
public static final ButtonTypeType GIFTCERTIFICATE
public static final ButtonTypeType SUBSCRIBE
public static final ButtonTypeType DONATE
public static final ButtonTypeType UNSUBSCRIBE
public static final ButtonTypeType VIEWCART
public static final ButtonTypeType PAYMENTPLAN
public static final ButtonTypeType AUTOBILLING
public static final ButtonTypeType PAYMENT
public static ButtonTypeType[] values()
for (ButtonTypeType c : ButtonTypeType.values()) System.out.println(c);
public static ButtonTypeType 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 ButtonTypeType fromValue(String v)
Copyright © 2015. All Rights Reserved.