public enum XMLFieldType extends java.lang.Enum<XMLFieldType>
Enum Constant and Description |
---|
BOOLEAN
Boolean value
|
ENUM
Enumeration provided by a class
|
FILE
Path to a file
|
FLOAT
Float value
|
INT
Integer value
|
INTARRAY
Array of integers separated with the comma character.
|
LONG
Long integer value
|
STRING
String value
|
Modifier and Type | Method and Description |
---|---|
static XMLFieldType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XMLFieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XMLFieldType INTARRAY
public static final XMLFieldType STRING
public static final XMLFieldType INT
public static final XMLFieldType LONG
public static final XMLFieldType FLOAT
public static final XMLFieldType BOOLEAN
public static final XMLFieldType ENUM
public static final XMLFieldType FILE
public static XMLFieldType[] values()
for (XMLFieldType c : XMLFieldType.values()) System.out.println(c);
public static XMLFieldType 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