public enum BoundedContextType extends java.lang.Enum<BoundedContextType> implements org.eclipse.emf.common.util.Enumerator
| Enum Constant and Description |
|---|
APPLICATION
The 'APPLICATION' literal object.
|
FEATURE
The 'FEATURE' literal object.
|
SYSTEM
The 'SYSTEM' literal object.
|
TEAM
The 'TEAM' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
APPLICATION_VALUE
The 'APPLICATION' literal value.
|
static int |
FEATURE_VALUE
The 'FEATURE' literal value.
|
static int |
SYSTEM_VALUE
The 'SYSTEM' literal value.
|
static int |
TEAM_VALUE
The 'TEAM' literal value.
|
static java.util.List<BoundedContextType> |
VALUES
A public read-only list of all the 'Bounded Context Type' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static BoundedContextType |
get(int value)
Returns the 'Bounded Context Type' literal with the specified integer value.
|
static BoundedContextType |
get(java.lang.String literal)
Returns the 'Bounded Context Type' literal with the specified literal value.
|
static BoundedContextType |
getByName(java.lang.String name)
Returns the 'Bounded Context Type' 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 BoundedContextType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BoundedContextType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoundedContextType FEATURE
FEATURE_VALUEpublic static final BoundedContextType APPLICATION
APPLICATION_VALUEpublic static final BoundedContextType SYSTEM
SYSTEM_VALUEpublic static final BoundedContextType TEAM
TEAM_VALUEpublic static final int FEATURE_VALUE
If the meaning of 'FEATURE' literal object isn't clear, there really should be more of a description here...
FEATURE,
Constant Field Valuespublic static final int APPLICATION_VALUE
If the meaning of 'APPLICATION' literal object isn't clear, there really should be more of a description here...
APPLICATION,
Constant Field Valuespublic static final int SYSTEM_VALUE
If the meaning of 'SYSTEM' literal object isn't clear, there really should be more of a description here...
SYSTEM,
Constant Field Valuespublic static final int TEAM_VALUE
If the meaning of 'TEAM' literal object isn't clear, there really should be more of a description here...
TEAM,
Constant Field Valuespublic static final java.util.List<BoundedContextType> VALUES
public static BoundedContextType[] values()
for (BoundedContextType c : BoundedContextType.values()) System.out.println(c);
public static BoundedContextType 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 BoundedContextType get(java.lang.String literal)
literal - the literal.null.public static BoundedContextType getByName(java.lang.String name)
name - the name.null.public static BoundedContextType get(int value)
value - the integer value.null.public int getValue()
getValue in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String getName()
getName in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String getLiteral()
getLiteral in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String toString()
toString in class java.lang.Enum<BoundedContextType>