public enum CollectionTypeIdentifierEnum extends Enum<CollectionTypeIdentifierEnum>
| Enum Constant and Description |
|---|
BAG_LITERAL
The 'Bag' literal object.
|
COLLECTION_LITERAL
The 'Collection' literal object.
|
ORDERED_SET_LITERAL
The 'Ordered Set' literal object.
|
SEQUENCE_LITERAL
The 'Sequence' literal object.
|
SET_LITERAL
The 'Set' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
BAG
The 'Bag' literal value.
|
static int |
COLLECTION
The 'Collection' literal value.
|
static int |
ORDERED_SET
The 'Ordered Set' literal value.
|
static int |
SEQUENCE
The 'Sequence' literal value.
|
static int |
SET
The 'Set' literal value.
|
static List<CollectionTypeIdentifierEnum> |
VALUES
A public read-only list of all the 'Collection Type Identifier Enum' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static CollectionTypeIdentifierEnum |
get(int value)
Returns the 'Collection Type Identifier Enum' literal with the specified integer value.
|
static CollectionTypeIdentifierEnum |
get(String literal)
Returns the 'Collection Type Identifier Enum' literal with the specified literal value.
|
static CollectionTypeIdentifierEnum |
getByName(String name)
Returns the 'Collection Type Identifier Enum' literal with the specified name.
|
String |
getLiteral() |
String |
getName() |
int |
getValue() |
String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static CollectionTypeIdentifierEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CollectionTypeIdentifierEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollectionTypeIdentifierEnum SET_LITERAL
SETpublic static final CollectionTypeIdentifierEnum BAG_LITERAL
BAGpublic static final CollectionTypeIdentifierEnum SEQUENCE_LITERAL
SEQUENCEpublic static final CollectionTypeIdentifierEnum COLLECTION_LITERAL
COLLECTIONpublic static final CollectionTypeIdentifierEnum ORDERED_SET_LITERAL
ORDERED_SETpublic static final int SET
If the meaning of 'Set' literal object isn't clear, there really should be more of a description here...
SET_LITERAL,
Constant Field Valuespublic static final int BAG
If the meaning of 'Bag' literal object isn't clear, there really should be more of a description here...
BAG_LITERAL,
Constant Field Valuespublic static final int SEQUENCE
If the meaning of 'Sequence' literal object isn't clear, there really should be more of a description here...
SEQUENCE_LITERAL,
Constant Field Valuespublic static final int COLLECTION
If the meaning of 'Collection' literal object isn't clear, there really should be more of a description here...
COLLECTION_LITERAL,
Constant Field Valuespublic static final int ORDERED_SET
If the meaning of 'Ordered Set' literal object isn't clear, there really should be more of a description here...
ORDERED_SET_LITERAL,
Constant Field Valuespublic static final List<CollectionTypeIdentifierEnum> VALUES
public static CollectionTypeIdentifierEnum[] values()
for (CollectionTypeIdentifierEnum c : CollectionTypeIdentifierEnum.values()) System.out.println(c);
public static CollectionTypeIdentifierEnum valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static CollectionTypeIdentifierEnum get(String literal)
public static CollectionTypeIdentifierEnum getByName(String name)
public static CollectionTypeIdentifierEnum get(int value)
public int getValue()
public String getName()
public String getLiteral()
public String toString()
toString in class Enum<CollectionTypeIdentifierEnum>Copyright © 2015 Open eHealth Foundation. All rights reserved.