Package agents.plantOperator
Enum RenewablePlantOperator.SetType
- java.lang.Object
-
- java.lang.Enum<RenewablePlantOperator.SetType>
-
- agents.plantOperator.RenewablePlantOperator.SetType
-
- All Implemented Interfaces:
Serializable
,Comparable<RenewablePlantOperator.SetType>
- Enclosing class:
- RenewablePlantOperator
public static enum RenewablePlantOperator.SetType extends Enum<RenewablePlantOperator.SetType>
Available sets for energy-carrier-specific remuneration
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Biogas
Biogas power plantsOtherPV
Any other type of PV power plantPvFit
PV power plant with feed-in tariffPvMpvarCluster1
PV power plant cluster 1 with variable market premiumPvMpvarCluster2
PV power plant cluster 2 with variable market premiumPvMpvarCluster3
PV power plant cluster 3 with variable market premiumPvMpvarCluster4
PV power plant cluster 4 with variable market premiumPvMpvarCluster5
PV power plant cluster 5 with variable market premiumPVRooftop
Rooftop PV devicesRunOfRiver
Run of river power plantsUndefined
unspecified power plantWindOff
Offshore wind power plantsWindOffMpvarCluster1
Wind offshore power plant cluster 1 with variable market premiumWindOffMpvarCluster2
Wind offshore power plant cluster 2 with variable market premiumWindOffMpvarCluster3
Wind offshore power plant cluster 3 with variable market premiumWindOffMpvarCluster4
Wind offshore power plant cluster 4 with variable market premiumWindOn
Onshore wind power plantsWindOnFit
Wind onshore power plant with feed-in tariffWindOnMpvarCluster1
Wind onshore power plant cluster 1 with variable market premiumWindOnMpvarCluster2
Wind onshore power plant cluster 2 with variable market premiumWindOnMpvarCluster3
Wind onshore power plant cluster 3 with variable market premiumWindOnMpvarCluster4
Wind onshore power plant cluster 4 with variable market premiumWindOnMpvarCluster5
Wind onshore power plant cluster 5 with variable market premium
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RenewablePlantOperator.SetType
valueOf(String name)
Returns the enum constant of this type with the specified name.static RenewablePlantOperator.SetType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PVRooftop
public static final RenewablePlantOperator.SetType PVRooftop
Rooftop PV devices
-
WindOn
public static final RenewablePlantOperator.SetType WindOn
Onshore wind power plants
-
WindOff
public static final RenewablePlantOperator.SetType WindOff
Offshore wind power plants
-
RunOfRiver
public static final RenewablePlantOperator.SetType RunOfRiver
Run of river power plants
-
OtherPV
public static final RenewablePlantOperator.SetType OtherPV
Any other type of PV power plant
-
Biogas
public static final RenewablePlantOperator.SetType Biogas
Biogas power plants
-
Undefined
public static final RenewablePlantOperator.SetType Undefined
unspecified power plant
-
PvFit
public static final RenewablePlantOperator.SetType PvFit
PV power plant with feed-in tariff
-
PvMpvarCluster1
public static final RenewablePlantOperator.SetType PvMpvarCluster1
PV power plant cluster 1 with variable market premium
-
PvMpvarCluster2
public static final RenewablePlantOperator.SetType PvMpvarCluster2
PV power plant cluster 2 with variable market premium
-
PvMpvarCluster3
public static final RenewablePlantOperator.SetType PvMpvarCluster3
PV power plant cluster 3 with variable market premium
-
PvMpvarCluster4
public static final RenewablePlantOperator.SetType PvMpvarCluster4
PV power plant cluster 4 with variable market premium
-
PvMpvarCluster5
public static final RenewablePlantOperator.SetType PvMpvarCluster5
PV power plant cluster 5 with variable market premium
-
WindOnFit
public static final RenewablePlantOperator.SetType WindOnFit
Wind onshore power plant with feed-in tariff
-
WindOnMpvarCluster1
public static final RenewablePlantOperator.SetType WindOnMpvarCluster1
Wind onshore power plant cluster 1 with variable market premium
-
WindOnMpvarCluster2
public static final RenewablePlantOperator.SetType WindOnMpvarCluster2
Wind onshore power plant cluster 2 with variable market premium
-
WindOnMpvarCluster3
public static final RenewablePlantOperator.SetType WindOnMpvarCluster3
Wind onshore power plant cluster 3 with variable market premium
-
WindOnMpvarCluster4
public static final RenewablePlantOperator.SetType WindOnMpvarCluster4
Wind onshore power plant cluster 4 with variable market premium
-
WindOnMpvarCluster5
public static final RenewablePlantOperator.SetType WindOnMpvarCluster5
Wind onshore power plant cluster 5 with variable market premium
-
WindOffMpvarCluster1
public static final RenewablePlantOperator.SetType WindOffMpvarCluster1
Wind offshore power plant cluster 1 with variable market premium
-
WindOffMpvarCluster2
public static final RenewablePlantOperator.SetType WindOffMpvarCluster2
Wind offshore power plant cluster 2 with variable market premium
-
WindOffMpvarCluster3
public static final RenewablePlantOperator.SetType WindOffMpvarCluster3
Wind offshore power plant cluster 3 with variable market premium
-
WindOffMpvarCluster4
public static final RenewablePlantOperator.SetType WindOffMpvarCluster4
Wind offshore power plant cluster 4 with variable market premium
-
-
Method Detail
-
values
public static RenewablePlantOperator.SetType[] 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 (RenewablePlantOperator.SetType c : RenewablePlantOperator.SetType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RenewablePlantOperator.SetType 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
-
-