public static enum Button.Style extends Enum<Button.Style>
| Enum Constant and Description |
|---|
BUY_NOW_LARGE |
BUY_NOW_SMALL |
CUSTOM_LARGE |
CUSTOM_SMALL |
DONATION_LARGE |
DONATION_SMALL |
NONE |
SUBSCRIPTION_LARGE |
SUBSCRIPTION_SMALL |
| Modifier and Type | Method and Description |
|---|---|
static Button.Style |
create(String val) |
String |
toString() |
static Button.Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Button.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Button.Style BUY_NOW_LARGE
public static final Button.Style BUY_NOW_SMALL
public static final Button.Style DONATION_LARGE
public static final Button.Style DONATION_SMALL
public static final Button.Style SUBSCRIPTION_LARGE
public static final Button.Style SUBSCRIPTION_SMALL
public static final Button.Style CUSTOM_LARGE
public static final Button.Style CUSTOM_SMALL
public static final Button.Style NONE
public static Button.Style[] values()
for (Button.Style c : Button.Style.values()) System.out.println(c);
public static Button.Style 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 toString()
toString in class Enum<Button.Style>public static Button.Style create(String val)
Copyright © 2014. All rights reserved.