public enum InputTypes extends Enum<InputTypes> implements InputType
InputType hints that determine custom display options for various input types meriting
advanced display options or validation that would otherwise be impossible without implementation in the user
interface provider.| Enum Constant and Description |
|---|
CHECKBOX |
FILE_PICKER |
JAVA_CLASS_PICKER |
JAVA_PACKAGE_PICKER |
MULTI_FILE_PICKER |
MULTI_JAVA_CLASS_PICKER |
MULTI_JAVA_PACKAGE_PICKER |
SECRET |
SELECT_MANY |
SELECT_MANY_CHECKBOX |
SELECT_ONE_DROPDOWN |
SELECT_ONE_RADIO |
TEXTAREA |
TEXTBOX |
| Modifier and Type | Method and Description |
|---|---|
static InputTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InputTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputTypes CHECKBOX
public static final InputTypes TEXTBOX
public static final InputTypes TEXTAREA
public static final InputTypes FILE_PICKER
public static final InputTypes MULTI_FILE_PICKER
public static final InputTypes SELECT_ONE_DROPDOWN
public static final InputTypes SELECT_ONE_RADIO
public static final InputTypes SELECT_MANY
public static final InputTypes SELECT_MANY_CHECKBOX
public static final InputTypes SECRET
public static final InputTypes JAVA_CLASS_PICKER
public static final InputTypes MULTI_JAVA_CLASS_PICKER
public static final InputTypes JAVA_PACKAGE_PICKER
public static final InputTypes MULTI_JAVA_PACKAGE_PICKER
public static InputTypes[] values()
for (InputTypes c : InputTypes.values()) System.out.println(c);
public static InputTypes 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 © 2013 JBoss by Red Hat. All Rights Reserved.