public enum EnumValueType extends java.lang.Enum<EnumValueType>
| Enum Constant and Description |
|---|
CODE
The CODE.
|
COMPOSITE
The COMPOSITE.
|
CONTAINER
The CONTAINER.
|
DATE
The DATE.
|
DATETIME
The DATETIME.
|
IMAGE
The IMAGE.
|
NUM
The NUM.
|
NUMERIC
The NUMERIC.
|
PNAME
The PNAME.
|
SCOORD
The SCOORD.
|
TCOORD
The TCOORD.
|
TEXT
The TEXT.
|
TIME
The TIME.
|
UIDREF
The UIDREF.
|
WAVEFORM
The WAVEFORM.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumValueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumValueType TEXT
public static final EnumValueType NUM
public static final EnumValueType CODE
public static final EnumValueType DATETIME
public static final EnumValueType DATE
public static final EnumValueType TIME
public static final EnumValueType UIDREF
public static final EnumValueType PNAME
public static final EnumValueType COMPOSITE
public static final EnumValueType IMAGE
public static final EnumValueType WAVEFORM
public static final EnumValueType SCOORD
public static final EnumValueType TCOORD
public static final EnumValueType CONTAINER
public static final EnumValueType NUMERIC
public static EnumValueType[] values()
for (EnumValueType c : EnumValueType.values()) System.out.println(c);
public static EnumValueType 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 nullpublic java.lang.String getValue()