Package org.pentaho.di.ui.core.widget
Enum FormInput.Widget
- java.lang.Object
-
- java.lang.Enum<FormInput.Widget>
-
- org.pentaho.di.ui.core.widget.FormInput.Widget
-
- All Implemented Interfaces:
Serializable
,Comparable<FormInput.Widget>
public static enum FormInput.Widget extends Enum<FormInput.Widget>
enumeration of the contained widgets
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FormInput.Widget
valueOf(String name)
Returns the enum constant of this type with the specified name.static FormInput.Widget[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LABEL
public static final FormInput.Widget LABEL
-
INPUT
public static final FormInput.Widget INPUT
-
-
Method Detail
-
values
public static FormInput.Widget[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FormInput.Widget c : FormInput.Widget.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FormInput.Widget valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-