public enum CollectionKind extends Enum<CollectionKind>
ExpressionsPackage.getCollectionKind()| 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<CollectionKind> |
VALUES
A public read-only list of all the 'Collection Kind' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static CollectionKind |
get(int value)
Returns the 'Collection Kind' literal with the specified integer value.
|
static CollectionKind |
get(String literal)
Returns the 'Collection Kind' literal with the specified literal value.
|
static CollectionKind |
getByName(String name)
Returns the 'Collection Kind' literal with the specified name.
|
static CollectionKind |
getKind(boolean ordered,
boolean unique) |
String |
getLiteral() |
String |
getName() |
int |
getValue() |
String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static CollectionKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CollectionKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollectionKind SET_LITERAL
SETpublic static final CollectionKind ORDERED_SET_LITERAL
ORDERED_SETpublic static final CollectionKind BAG_LITERAL
BAGpublic static final CollectionKind SEQUENCE_LITERAL
SEQUENCEpublic static final CollectionKind COLLECTION_LITERAL
COLLECTIONpublic 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 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 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 List<CollectionKind> VALUES
public static CollectionKind[] values()
for (CollectionKind c : CollectionKind.values()) System.out.println(c);
public static CollectionKind 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 CollectionKind get(String literal)
literal - the literal.null.public static CollectionKind getByName(String name)
name - the name.null.public static CollectionKind get(int value)
value - the integer value.null.public int getValue()
public String getName()
public String getLiteral()
public String toString()
toString in class Enum<CollectionKind>public static CollectionKind getKind(boolean ordered, boolean unique)
Copyright © 2005, 2018 IBM Corporation and others. All Rights Reserved.