Enum Class PortfolioOptimizer.OptimizationStrategy
java.lang.Object
java.lang.Enum<PortfolioOptimizer.OptimizationStrategy>
neqsim.process.fielddevelopment.economics.PortfolioOptimizer.OptimizationStrategy
- All Implemented Interfaces:
Serializable, Comparable<PortfolioOptimizer.OptimizationStrategy>, Constable
- Enclosing class:
PortfolioOptimizer
public static enum PortfolioOptimizer.OptimizationStrategy
extends Enum<PortfolioOptimizer.OptimizationStrategy>
Optimization strategy.
- Version:
- 1.0
- Author:
- ESOL
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBalanced portfolio across project types.Maximize expected monetary value.Greedy selection by absolute NPV.Greedy selection by NPV/CAPEX ratio.Risk-weighted NPV ranking. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GREEDY_NPV_RATIO
Greedy selection by NPV/CAPEX ratio. -
GREEDY_ABSOLUTE_NPV
Greedy selection by absolute NPV. -
RISK_WEIGHTED
Risk-weighted NPV ranking. -
BALANCED
Balanced portfolio across project types. -
EMV_MAXIMIZATION
Maximize expected monetary value.
-
-
Constructor Details
-
OptimizationStrategy
private OptimizationStrategy()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-