Enum GuiElements
- java.lang.Object
-
- java.lang.Enum<GuiElements>
-
- ro.sync.ecss.extensions.commons.table.properties.GuiElements
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GuiElements>
@API(type=NOT_EXTENDABLE, src=PUBLIC) public enum GuiElements extends java.lang.Enum<GuiElements>
Impose the GUI elements that will be used to present the values for a specific table property.
TheRADIO_BUTTONS
type means that the values will be presented using radio buttons from the same group. TheCOMBOBOX
type means that the values will be presented using a combobox.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMBOBOX
Combobox type.RADIO_BUTTONS
Radio buttons type.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GuiElements
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GuiElements[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RADIO_BUTTONS
public static final GuiElements RADIO_BUTTONS
Radio buttons type.
-
COMBOBOX
public static final GuiElements COMBOBOX
Combobox type.
-
-
Method Detail
-
values
public static GuiElements[] 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 (GuiElements c : GuiElements.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GuiElements valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-