@API(type=NOT_EXTENDABLE, src=PUBLIC) public enum GuiElements extends java.lang.Enum<GuiElements>
RADIO_BUTTONS
type means that the values will be presented
using radio buttons from the same group.
The COMBOBOX
type means that the values will be presented
using a combobox.
Enum Constant and Description |
---|
COMBOBOX
Combobox type.
|
RADIO_BUTTONS
Radio buttons type.
|
Modifier and Type | Method and 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.
|
public static final GuiElements RADIO_BUTTONS
public static final GuiElements COMBOBOX
public static GuiElements[] values()
for (GuiElements c : GuiElements.values()) System.out.println(c);
public static GuiElements valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null© Copyright SyncRO Soft SRL 2002 - 2016. All rights reserved.