public static enum ButtonViewElement.Type extends Enum<ButtonViewElement.Type>
| Enum Constant and Description |
|---|
BUTTON |
BUTTON_RESET |
BUTTON_SUBMIT |
INPUT |
INPUT_RESET |
INPUT_SUBMIT |
LINK |
| Modifier and Type | Method and Description |
|---|---|
static ButtonViewElement.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ButtonViewElement.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ButtonViewElement.Type BUTTON
public static final ButtonViewElement.Type BUTTON_SUBMIT
public static final ButtonViewElement.Type BUTTON_RESET
public static final ButtonViewElement.Type INPUT
public static final ButtonViewElement.Type INPUT_SUBMIT
public static final ButtonViewElement.Type INPUT_RESET
public static final ButtonViewElement.Type LINK
public static ButtonViewElement.Type[] values()
for (ButtonViewElement.Type c : ButtonViewElement.Type.values()) System.out.println(c);
public static ButtonViewElement.Type 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 © 2020. All rights reserved.