public enum AttributeSplittingMode extends java.lang.Enum<AttributeSplittingMode>
Enum Constant and Description |
---|
DATA_LIST
This type is used for data lists in attribute splitting.
|
DATA_SET
This type is used for data sets in attribute splitting.
|
NARRATIVE_TEXT
This type is used for narrative text in attribute splitting.
|
Modifier and Type | Method and Description |
---|---|
static AttributeSplittingMode |
getAttributeSplittingMode(java.lang.String val) |
java.lang.String |
toString() |
static AttributeSplittingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AttributeSplittingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeSplittingMode NARRATIVE_TEXT
public static final AttributeSplittingMode DATA_SET
public static final AttributeSplittingMode DATA_LIST
public static AttributeSplittingMode[] values()
for (AttributeSplittingMode c : AttributeSplittingMode.values()) System.out.println(c);
public static AttributeSplittingMode 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 static AttributeSplittingMode getAttributeSplittingMode(java.lang.String val)
public java.lang.String toString()
toString
in class java.lang.Enum<AttributeSplittingMode>