public enum FragmentConfigurationFieldDataType extends java.lang.Enum<FragmentConfigurationFieldDataType>
Enum Constant and Description |
---|
ARRAY |
BOOLEAN |
DOUBLE |
INTEGER |
OBJECT |
STRING |
Modifier and Type | Method and Description |
---|---|
static FragmentConfigurationFieldDataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FragmentConfigurationFieldDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FragmentConfigurationFieldDataType ARRAY
public static final FragmentConfigurationFieldDataType BOOLEAN
public static final FragmentConfigurationFieldDataType DOUBLE
public static final FragmentConfigurationFieldDataType INTEGER
public static final FragmentConfigurationFieldDataType OBJECT
public static final FragmentConfigurationFieldDataType STRING
public static FragmentConfigurationFieldDataType[] values()
for (FragmentConfigurationFieldDataType c : FragmentConfigurationFieldDataType.values()) System.out.println(c);
public static FragmentConfigurationFieldDataType 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