public static enum BaseButton.ButtonType extends java.lang.Enum<BaseButton.ButtonType>
| Enum Constant and Description |
|---|
ACTION_CANCEL
Action button used for "cancel" events.
|
ACTION_DEFAULT
A default "action" button.
|
ACTION_DELETE
Action button used for "delete" events.
|
ACTION_GREEN
A "green" action button.
|
ACTION_IMPORTANT
Action button used for "important" events.
|
BORDERED |
BORDERED_IMPORTANT |
BORDERED_WARNING |
PLAIN |
ROUNDED_RECTANGLE
A rounded rectangle style button.
|
ROUNDED_RECTANGLE_IMPORTANT
A rounded rectangle style button.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
_getClassNames() |
static BaseButton.ButtonType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BaseButton.ButtonType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseButton.ButtonType BORDERED
public static final BaseButton.ButtonType BORDERED_IMPORTANT
public static final BaseButton.ButtonType BORDERED_WARNING
public static final BaseButton.ButtonType PLAIN
public static final BaseButton.ButtonType ROUNDED_RECTANGLE
public static final BaseButton.ButtonType ROUNDED_RECTANGLE_IMPORTANT
public static final BaseButton.ButtonType ACTION_DEFAULT
public static final BaseButton.ButtonType ACTION_CANCEL
public static final BaseButton.ButtonType ACTION_DELETE
public static final BaseButton.ButtonType ACTION_IMPORTANT
public static final BaseButton.ButtonType ACTION_GREEN
public static BaseButton.ButtonType[] values()
for (BaseButton.ButtonType c : BaseButton.ButtonType.values()) System.out.println(c);
public static BaseButton.ButtonType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null@SGWTInternal public final java.lang.String _getClassNames()