Package com.powsybl.cgmes.conversion
Enum Conversion.Xfmr3RatioPhaseInterpretationAlternative
- java.lang.Object
-
- java.lang.Enum<Conversion.Xfmr3RatioPhaseInterpretationAlternative>
-
- com.powsybl.cgmes.conversion.Conversion.Xfmr3RatioPhaseInterpretationAlternative
-
- All Implemented Interfaces:
Serializable
,Comparable<Conversion.Xfmr3RatioPhaseInterpretationAlternative>
- Enclosing class:
- Conversion
public static enum Conversion.Xfmr3RatioPhaseInterpretationAlternative extends Enum<Conversion.Xfmr3RatioPhaseInterpretationAlternative>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NETWORK_SIDE
STAR_BUS_SIDE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Conversion.Xfmr3RatioPhaseInterpretationAlternative
valueOf(String name)
Returns the enum constant of this type with the specified name.static Conversion.Xfmr3RatioPhaseInterpretationAlternative[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NETWORK_SIDE
public static final Conversion.Xfmr3RatioPhaseInterpretationAlternative NETWORK_SIDE
-
STAR_BUS_SIDE
public static final Conversion.Xfmr3RatioPhaseInterpretationAlternative STAR_BUS_SIDE
-
-
Method Detail
-
values
public static Conversion.Xfmr3RatioPhaseInterpretationAlternative[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Conversion.Xfmr3RatioPhaseInterpretationAlternative c : Conversion.Xfmr3RatioPhaseInterpretationAlternative.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Conversion.Xfmr3RatioPhaseInterpretationAlternative valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-