Package agents.trader.electrolysis
Enum ElectrolysisTrader.Outputs
- java.lang.Object
-
- java.lang.Enum<ElectrolysisTrader.Outputs>
-
- agents.trader.electrolysis.ElectrolysisTrader.Outputs
-
- All Implemented Interfaces:
Serializable
,Comparable<ElectrolysisTrader.Outputs>
- Enclosing class:
- ElectrolysisTrader
protected static enum ElectrolysisTrader.Outputs extends Enum<ElectrolysisTrader.Outputs>
Available output columns
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OfferedElectricityPriceInEURperMWH
Price at which electricity offers are placed at the day-ahead marketProducedHydrogenInMWH
Amount of hydrogen producedReceivedMoneyForHydrogenInEUR
Total received money for selling hydrogen in EUR
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ElectrolysisTrader.Outputs
valueOf(String name)
Returns the enum constant of this type with the specified name.static ElectrolysisTrader.Outputs[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OfferedElectricityPriceInEURperMWH
public static final ElectrolysisTrader.Outputs OfferedElectricityPriceInEURperMWH
Price at which electricity offers are placed at the day-ahead market
-
ProducedHydrogenInMWH
public static final ElectrolysisTrader.Outputs ProducedHydrogenInMWH
Amount of hydrogen produced
-
ReceivedMoneyForHydrogenInEUR
public static final ElectrolysisTrader.Outputs ReceivedMoneyForHydrogenInEUR
Total received money for selling hydrogen in EUR
-
-
Method Detail
-
values
public static ElectrolysisTrader.Outputs[] 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 (ElectrolysisTrader.Outputs c : ElectrolysisTrader.Outputs.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ElectrolysisTrader.Outputs 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
-
-