public static enum IdHelper.WidgetType extends Enum<IdHelper.WidgetType>
| Enum Constant and Description |
|---|
BUTTON |
CHECK_BOX |
LABEL |
RADIO_BUTTON |
TEXT_BOX |
UNKNOWN |
WINDOW |
| Modifier and Type | Method and Description |
|---|---|
static IdHelper.WidgetType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IdHelper.WidgetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdHelper.WidgetType LABEL
public static final IdHelper.WidgetType TEXT_BOX
public static final IdHelper.WidgetType RADIO_BUTTON
public static final IdHelper.WidgetType CHECK_BOX
public static final IdHelper.WidgetType BUTTON
public static final IdHelper.WidgetType WINDOW
public static final IdHelper.WidgetType UNKNOWN
public static IdHelper.WidgetType[] values()
for (IdHelper.WidgetType c : IdHelper.WidgetType.values()) System.out.println(c);
public static IdHelper.WidgetType 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 © 2014 JBoss, a division of Red Hat. All rights reserved.