Package agents.markets
Enum DayAheadMarket.Products
- java.lang.Object
-
- java.lang.Enum<DayAheadMarket.Products>
-
- agents.markets.DayAheadMarket.Products
-
- All Implemented Interfaces:
Serializable
,Comparable<DayAheadMarket.Products>
- Enclosing class:
- DayAheadMarket
public static enum DayAheadMarket.Products extends Enum<DayAheadMarket.Products>
Products ofDayAheadMarket
s
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Awards
Awarded energy and price per bidding traderGateClosureInfo
States when the market clearing is performed and which time intervals it covers
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DayAheadMarket.Products
valueOf(String name)
Returns the enum constant of this type with the specified name.static DayAheadMarket.Products[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Awards
public static final DayAheadMarket.Products Awards
Awarded energy and price per bidding trader
-
GateClosureInfo
public static final DayAheadMarket.Products GateClosureInfo
States when the market clearing is performed and which time intervals it covers
-
-
Method Detail
-
values
public static DayAheadMarket.Products[] 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 (DayAheadMarket.Products c : DayAheadMarket.Products.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DayAheadMarket.Products 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
-
-