public enum HvdcControlMode extends java.lang.Enum<HvdcControlMode> implements org.eclipse.emf.common.util.Enumerator
HvdcLinePackage.getHvdcControlMode()
Enum Constant and Description |
---|
BLOCKED
The 'Blocked' literal object.
|
DC_CURRENT
The 'Dc Current' literal object.
|
DC_POWER
The 'Dc Power' literal object.
|
DC_VOLTAGE
The 'Dc Voltage' literal object.
|
FIRING_ANGLE
The 'Firing Angle' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
BLOCKED_VALUE
The 'Blocked' literal value.
|
static int |
DC_CURRENT_VALUE
The 'Dc Current' literal value.
|
static int |
DC_POWER_VALUE
The 'Dc Power' literal value.
|
static int |
DC_VOLTAGE_VALUE
The 'Dc Voltage' literal value.
|
static int |
FIRING_ANGLE_VALUE
The 'Firing Angle' literal value.
|
static java.util.List<HvdcControlMode> |
VALUES
A public read-only list of all the 'Hvdc Control Mode' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static HvdcControlMode |
get(int value)
Returns the 'Hvdc Control Mode' literal with the specified integer value.
|
static HvdcControlMode |
get(java.lang.String literal)
Returns the 'Hvdc Control Mode' literal with the specified literal value.
|
static HvdcControlMode |
getByName(java.lang.String name)
Returns the 'Hvdc Control Mode' 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 HvdcControlMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HvdcControlMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HvdcControlMode DC_POWER
DC_POWER_VALUE
public static final HvdcControlMode DC_VOLTAGE
DC_VOLTAGE_VALUE
public static final HvdcControlMode DC_CURRENT
DC_CURRENT_VALUE
public static final HvdcControlMode FIRING_ANGLE
FIRING_ANGLE_VALUE
public static final HvdcControlMode BLOCKED
BLOCKED_VALUE
public static final int DC_POWER_VALUE
DC_POWER
,
Constant Field Valuespublic static final int DC_VOLTAGE_VALUE
DC_VOLTAGE
,
Constant Field Valuespublic static final int DC_CURRENT_VALUE
DC_CURRENT
,
Constant Field Valuespublic static final int FIRING_ANGLE_VALUE
FIRING_ANGLE
,
Constant Field Valuespublic static final int BLOCKED_VALUE
If the meaning of 'Blocked' literal object isn't clear, there really should be more of a description here...
BLOCKED
,
Constant Field Valuespublic static final java.util.List<HvdcControlMode> VALUES
public static HvdcControlMode[] values()
for (HvdcControlMode c : HvdcControlMode.values()) System.out.println(c);
public static HvdcControlMode 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 HvdcControlMode get(java.lang.String literal)
literal
- the literal.null
.public static HvdcControlMode getByName(java.lang.String name)
name
- the name.null
.public static HvdcControlMode get(int value)
value
- the integer value.null
.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<HvdcControlMode>