Package agents.plantOperator
Enum PowerPlantOperator.OutputFields
- java.lang.Object
-
- java.lang.Enum<PowerPlantOperator.OutputFields>
-
- agents.plantOperator.PowerPlantOperator.OutputFields
-
- All Implemented Interfaces:
Serializable
,Comparable<PowerPlantOperator.OutputFields>
- Enclosing class:
- PowerPlantOperator
protected static enum PowerPlantOperator.OutputFields extends Enum<PowerPlantOperator.OutputFields>
Available output columns
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AwardedEnergyInMWH
Electricity awarded for productionFixedCostsInEUR
Fixed operation and maintenance costsInvestmentAnnuityInEUR
Annual share of investment costOfferedEnergyInMWH
Electricity offered for productionReceivedMoneyInEUR
Money receivedVariableCostsInEUR
Variable operation and maintenance costs
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PowerPlantOperator.OutputFields
valueOf(String name)
Returns the enum constant of this type with the specified name.static PowerPlantOperator.OutputFields[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AwardedEnergyInMWH
public static final PowerPlantOperator.OutputFields AwardedEnergyInMWH
Electricity awarded for production
-
OfferedEnergyInMWH
public static final PowerPlantOperator.OutputFields OfferedEnergyInMWH
Electricity offered for production
-
ReceivedMoneyInEUR
public static final PowerPlantOperator.OutputFields ReceivedMoneyInEUR
Money received
-
VariableCostsInEUR
public static final PowerPlantOperator.OutputFields VariableCostsInEUR
Variable operation and maintenance costs
-
FixedCostsInEUR
public static final PowerPlantOperator.OutputFields FixedCostsInEUR
Fixed operation and maintenance costs
-
InvestmentAnnuityInEUR
public static final PowerPlantOperator.OutputFields InvestmentAnnuityInEUR
Annual share of investment cost
-
-
Method Detail
-
values
public static PowerPlantOperator.OutputFields[] 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 (PowerPlantOperator.OutputFields c : PowerPlantOperator.OutputFields.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PowerPlantOperator.OutputFields 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
-
-