|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CollectionKind>
org.eclipse.ocl.examples.pivot.CollectionKind
public enum CollectionKind
A representation of the literals of the enumeration 'Collection Kind', and utility methods for working with them.
PivotPackage.getCollectionKind()
Enum Constant Summary | |
---|---|
BAG
The 'Bag' literal object. |
|
COLLECTION
The 'Collection' literal object. |
|
ORDERED_SET
The 'Ordered Set' literal object. |
|
SEQUENCE
The 'Sequence' literal object. |
|
SET
The 'Set' literal object. |
Field Summary | |
---|---|
static int |
BAG_VALUE
The 'Bag' literal value. |
static int |
COLLECTION_VALUE
The 'Collection' literal value. |
static int |
ORDERED_SET_VALUE
The 'Ordered Set' literal value. |
static int |
SEQUENCE_VALUE
The 'Sequence' literal value. |
static int |
SET_VALUE
The 'Set' literal value. |
static java.util.List<CollectionKind> |
VALUES
A public read-only list of all the 'Collection Kind' enumerators. |
Method Summary | |
---|---|
static CollectionKind |
get(int value)
Returns the 'Collection Kind' literal with the specified integer value. |
static CollectionKind |
get(java.lang.String literal)
Returns the 'Collection Kind' literal with the specified literal value. |
static CollectionKind |
getByName(java.lang.String name)
Returns the 'Collection Kind' literal with the specified name. |
java.lang.String |
getLiteral()
|
java.lang.String |
getName()
|
int |
getValue()
|
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation. |
static CollectionKind |
valueOf(java.lang.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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CollectionKind COLLECTION
COLLECTION_VALUE
public static final CollectionKind SET
SET_VALUE
public static final CollectionKind ORDERED_SET
ORDERED_SET_VALUE
public static final CollectionKind BAG
BAG_VALUE
public static final CollectionKind SEQUENCE
SEQUENCE_VALUE
Field Detail |
---|
public static final int COLLECTION_VALUE
If the meaning of 'Collection' literal object isn't clear, there really should be more of a description here...
COLLECTION
,
Constant Field Valuespublic static final int SET_VALUE
If the meaning of 'Set' literal object isn't clear, there really should be more of a description here...
SET
,
Constant Field Valuespublic static final int ORDERED_SET_VALUE
If the meaning of 'Ordered Set' literal object isn't clear, there really should be more of a description here...
ORDERED_SET
,
Constant Field Valuespublic static final int BAG_VALUE
If the meaning of 'Bag' literal object isn't clear, there really should be more of a description here...
BAG
,
Constant Field Valuespublic static final int SEQUENCE_VALUE
If the meaning of 'Sequence' literal object isn't clear, there really should be more of a description here...
SEQUENCE
,
Constant Field Valuespublic static final java.util.List<CollectionKind> VALUES
Method Detail |
---|
public static CollectionKind[] values()
for (CollectionKind c : CollectionKind.values()) System.out.println(c);
public static CollectionKind 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 name
java.lang.NullPointerException
- if the argument is nullpublic static CollectionKind get(java.lang.String literal)
public static CollectionKind getByName(java.lang.String name)
public static CollectionKind get(int value)
public int getValue()
getValue
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getName()
getName
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getLiteral()
getLiteral
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String toString()
toString
in class java.lang.Enum<CollectionKind>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |