public enum UIElements extends java.lang.Enum<UIElements>
| Enum Constant and Description |
|---|
HTML_OTHER |
MULTI_SELECT |
OOB |
SINGLE_SELECT |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static UIElements |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UIElements[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="text") public static final UIElements TEXT
@SerializedName(value="single_select") public static final UIElements SINGLE_SELECT
@SerializedName(value="multi_select") public static final UIElements MULTI_SELECT
@SerializedName(value="oob") public static final UIElements OOB
@SerializedName(value="html_other") public static final UIElements HTML_OTHER
public static UIElements[] values()
for (UIElements c : UIElements.values()) System.out.println(c);
public static UIElements 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