public enum CoinbaseButtonType extends Enum<CoinbaseButtonType>
Enum Constant and Description |
---|
BUY_NOW |
DONATION |
SUBSCRIPTION |
Modifier and Type | Method and Description |
---|---|
static CoinbaseButtonType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoinbaseButtonType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoinbaseButtonType BUY_NOW
public static final CoinbaseButtonType DONATION
public static final CoinbaseButtonType SUBSCRIPTION
public static CoinbaseButtonType[] values()
for (CoinbaseButtonType c : CoinbaseButtonType.values()) System.out.println(c);
public static CoinbaseButtonType 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 © 2012–2018 Xeiam, LLC. All rights reserved.