Package agents.trader
Enum FlexibilityTrader.Outputs
- java.lang.Object
-
- java.lang.Enum<FlexibilityTrader.Outputs>
-
- agents.trader.FlexibilityTrader.Outputs
-
- All Implemented Interfaces:
Serializable
,Comparable<FlexibilityTrader.Outputs>
- Enclosing class:
- FlexibilityTrader
protected static enum FlexibilityTrader.Outputs extends Enum<FlexibilityTrader.Outputs>
Output columns ofFlexibilityTrader
s
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FixedCostsInEUR
Fixed operation and maintenance costs in EURInvestmentAnnuityInEUR
Investment annuity in EURReceivedMoneyInEUR
Total received money in EURVariableCostsInEUR
Variable operation and maintenance costs in EUR
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FlexibilityTrader.Outputs
valueOf(String name)
Returns the enum constant of this type with the specified name.static FlexibilityTrader.Outputs[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FixedCostsInEUR
public static final FlexibilityTrader.Outputs FixedCostsInEUR
Fixed operation and maintenance costs in EUR
-
InvestmentAnnuityInEUR
public static final FlexibilityTrader.Outputs InvestmentAnnuityInEUR
Investment annuity in EUR
-
VariableCostsInEUR
public static final FlexibilityTrader.Outputs VariableCostsInEUR
Variable operation and maintenance costs in EUR
-
ReceivedMoneyInEUR
public static final FlexibilityTrader.Outputs ReceivedMoneyInEUR
Total received money in EUR
-
-
Method Detail
-
values
public static FlexibilityTrader.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 (FlexibilityTrader.Outputs c : FlexibilityTrader.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 FlexibilityTrader.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
-
-