public enum TSAbstractions extends java.lang.Enum<TSAbstractions>
Enum Constant and Description |
---|
BAG
Order will be lost, but number will be preserved.
|
SEQUENCE
Both order and number will be preserved in the abstraction.
|
SET
Both order and number will be lost, only presence will be preserved.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getLabel() |
static TSAbstractions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TSAbstractions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TSAbstractions SEQUENCE
public static final TSAbstractions SET
public static final TSAbstractions BAG
public static TSAbstractions[] values()
for (TSAbstractions c : TSAbstractions.values()) System.out.println(c);
public static TSAbstractions 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 getLabel()