public static enum MapEntryDefinition.DataType extends java.lang.Enum<MapEntryDefinition.DataType>
Enum Constant and Description |
---|
COMPONENT
直接的コンポーネントの定義。
|
REF
参照名による定義。
|
STRING
文字列データ。
|
Modifier and Type | Method and Description |
---|---|
static MapEntryDefinition.DataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MapEntryDefinition.DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapEntryDefinition.DataType STRING
public static final MapEntryDefinition.DataType REF
public static final MapEntryDefinition.DataType COMPONENT
public static MapEntryDefinition.DataType[] values()
for (MapEntryDefinition.DataType c : MapEntryDefinition.DataType.values()) System.out.println(c);
public static MapEntryDefinition.DataType 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