Enum Class ButtonType
- All Implemented Interfaces:
Serializable,Comparable<ButtonType>,Constable
Represents the type of a button.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionPressing the button loads the URL that is specified in the xlink:href attribute.Pressing the button does not perform any action by default.Pressing the button resets every control in the form to its default value.Pressing the button submits the form.Pressing the button loads the URL that is specified in the xlink:href attribute. -
Method Summary
Modifier and TypeMethodDescriptionstatic ButtonTypeReturns the enum constant of this class with the specified name.static ButtonType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SUBMIT
Pressing the button submits the form. -
RESET
Pressing the button resets every control in the form to its default value. -
PUSH
Pressing the button does not perform any action by default. A user can add scripts to a button and the script will run when the button is pressed. -
URL
Pressing the button loads the URL that is specified in the xlink:href attribute. -
NONE
Pressing the button loads the URL that is specified in the xlink:href attribute.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-