public enum NetCoordinate extends java.lang.Enum<NetCoordinate> implements org.eclipse.emf.common.util.Enumerator
NetPackage.getNetCoordinate()| Enum Constant and Description |
|---|
POSITIVE_SEQUENCE
The 'Positive Sequence' literal object.
|
THREE_PHASE
The 'Three Phase' literal object.
|
THREE_SEQUENCE
The 'Three Sequence' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
POSITIVE_SEQUENCE_VALUE
The 'Positive Sequence' literal value.
|
static int |
THREE_PHASE_VALUE
The 'Three Phase' literal value.
|
static int |
THREE_SEQUENCE_VALUE
The 'Three Sequence' literal value.
|
static java.util.List<NetCoordinate> |
VALUES
A public read-only list of all the 'Coordinate' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static NetCoordinate |
get(int value)
Returns the 'Coordinate' literal with the specified integer value.
|
static NetCoordinate |
get(java.lang.String literal)
Returns the 'Coordinate' literal with the specified literal value.
|
static NetCoordinate |
getByName(java.lang.String name)
Returns the 'Coordinate' 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 NetCoordinate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NetCoordinate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NetCoordinate POSITIVE_SEQUENCE
POSITIVE_SEQUENCE_VALUEpublic static final NetCoordinate THREE_SEQUENCE
THREE_SEQUENCE_VALUEpublic static final NetCoordinate THREE_PHASE
THREE_PHASE_VALUEpublic static final int POSITIVE_SEQUENCE_VALUE
If the meaning of 'Positive Sequence' literal object isn't clear, there really should be more of a description here...
POSITIVE_SEQUENCE,
Constant Field Valuespublic static final int THREE_SEQUENCE_VALUE
If the meaning of 'Three Sequence' literal object isn't clear, there really should be more of a description here...
THREE_SEQUENCE,
Constant Field Valuespublic static final int THREE_PHASE_VALUE
If the meaning of 'Three Phase' literal object isn't clear, there really should be more of a description here...
THREE_PHASE,
Constant Field Valuespublic static final java.util.List<NetCoordinate> VALUES
public static NetCoordinate[] values()
for (NetCoordinate c : NetCoordinate.values()) System.out.println(c);
public static NetCoordinate 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 NetCoordinate get(java.lang.String literal)
literal - the literal.null.public static NetCoordinate getByName(java.lang.String name)
name - the name.null.public static NetCoordinate 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<NetCoordinate>