Package agents.markets
Enum DayAheadMarketMultiZone.MarketZone
- java.lang.Object
-
- java.lang.Enum<DayAheadMarketMultiZone.MarketZone>
-
- agents.markets.DayAheadMarketMultiZone.MarketZone
-
- All Implemented Interfaces:
Serializable
,Comparable<DayAheadMarketMultiZone.MarketZone>
- Enclosing class:
- DayAheadMarketMultiZone
public static enum DayAheadMarketMultiZone.MarketZone extends Enum<DayAheadMarketMultiZone.MarketZone>
Available market zones labels
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DayAheadMarketMultiZone.MarketZone
valueOf(String name)
Returns the enum constant of this type with the specified name.static DayAheadMarketMultiZone.MarketZone[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DE
public static final DayAheadMarketMultiZone.MarketZone DE
Germany
-
FR
public static final DayAheadMarketMultiZone.MarketZone FR
France
-
PL
public static final DayAheadMarketMultiZone.MarketZone PL
Poland
-
AT
public static final DayAheadMarketMultiZone.MarketZone AT
Austria
-
BE
public static final DayAheadMarketMultiZone.MarketZone BE
Belgium
-
NL
public static final DayAheadMarketMultiZone.MarketZone NL
Netherlands
-
NO
public static final DayAheadMarketMultiZone.MarketZone NO
Norway
-
LU
public static final DayAheadMarketMultiZone.MarketZone LU
Luxembourg
-
SE
public static final DayAheadMarketMultiZone.MarketZone SE
Sweden
-
DKW
public static final DayAheadMarketMultiZone.MarketZone DKW
Denmark (West)
-
DKO
public static final DayAheadMarketMultiZone.MarketZone DKO
Denmark (East)
-
CZ
public static final DayAheadMarketMultiZone.MarketZone CZ
Czech Republic
-
CH
public static final DayAheadMarketMultiZone.MarketZone CH
Switzerland
-
A
public static final DayAheadMarketMultiZone.MarketZone A
Dummy market A
-
B
public static final DayAheadMarketMultiZone.MarketZone B
Dummy market B
-
-
Method Detail
-
values
public static DayAheadMarketMultiZone.MarketZone[] 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 (DayAheadMarketMultiZone.MarketZone c : DayAheadMarketMultiZone.MarketZone.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DayAheadMarketMultiZone.MarketZone 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
-
-