Package agents.trader.renewable
Enum AggregatorTrader.Products
- java.lang.Object
-
- java.lang.Enum<AggregatorTrader.Products>
-
- agents.trader.renewable.AggregatorTrader.Products
-
- All Implemented Interfaces:
Serializable
,Comparable<AggregatorTrader.Products>
- Enclosing class:
- AggregatorTrader
public static enum AggregatorTrader.Products extends Enum<AggregatorTrader.Products>
Products of this Agent
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SupportInfoRequest
Request for support information for contracted technology set(s)SupportPayoutRequest
Request to obtain support payments for contracted technology set(s)YieldPotential
Yield potential of contracted technology set(s)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AggregatorTrader.Products
valueOf(String name)
Returns the enum constant of this type with the specified name.static AggregatorTrader.Products[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SupportInfoRequest
public static final AggregatorTrader.Products SupportInfoRequest
Request for support information for contracted technology set(s)
-
SupportPayoutRequest
public static final AggregatorTrader.Products SupportPayoutRequest
Request to obtain support payments for contracted technology set(s)
-
YieldPotential
public static final AggregatorTrader.Products YieldPotential
Yield potential of contracted technology set(s)
-
-
Method Detail
-
values
public static AggregatorTrader.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 (AggregatorTrader.Products c : AggregatorTrader.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 AggregatorTrader.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
-
-