Enum SelectOptions.Items
- java.lang.Object
-
- java.lang.Enum<SelectOptions.Items>
-
- org.wicketstuff.datatables.options.SelectOptions.Items
-
- All Implemented Interfaces:
Serializable
,Comparable<SelectOptions.Items>
- Enclosing class:
- SelectOptions
public static enum SelectOptions.Items extends Enum<SelectOptions.Items>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SelectOptions.Items
valueOf(String name)
Returns the enum constant of this type with the specified name.static SelectOptions.Items[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Row
public static final SelectOptions.Items Row
-
Column
public static final SelectOptions.Items Column
-
Cell
public static final SelectOptions.Items Cell
-
-
Method Detail
-
values
public static SelectOptions.Items[] 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 (SelectOptions.Items c : SelectOptions.Items.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SelectOptions.Items 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
-
-