Module net.finmath.lib
Enum LIBORMarketModelFromCovarianceModel.SimulationTimeInterpolationMethod
- java.lang.Object
-
- java.lang.Enum<LIBORMarketModelFromCovarianceModel.SimulationTimeInterpolationMethod>
-
- net.finmath.montecarlo.interestrate.models.LIBORMarketModelFromCovarianceModel.SimulationTimeInterpolationMethod
-
- All Implemented Interfaces:
Serializable
,Comparable<LIBORMarketModelFromCovarianceModel.SimulationTimeInterpolationMethod>
- Enclosing class:
- LIBORMarketModelFromCovarianceModel
public static enum LIBORMarketModelFromCovarianceModel.SimulationTimeInterpolationMethod extends Enum<LIBORMarketModelFromCovarianceModel.SimulationTimeInterpolationMethod>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ROUND_DOWN
ROUND_NEAREST
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LIBORMarketModelFromCovarianceModel.SimulationTimeInterpolationMethod
valueOf(String name)
Returns the enum constant of this type with the specified name.static LIBORMarketModelFromCovarianceModel.SimulationTimeInterpolationMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ROUND_DOWN
public static final LIBORMarketModelFromCovarianceModel.SimulationTimeInterpolationMethod ROUND_DOWN
-
ROUND_NEAREST
public static final LIBORMarketModelFromCovarianceModel.SimulationTimeInterpolationMethod ROUND_NEAREST
-
-
Method Detail
-
values
public static LIBORMarketModelFromCovarianceModel.SimulationTimeInterpolationMethod[] 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 (LIBORMarketModelFromCovarianceModel.SimulationTimeInterpolationMethod c : LIBORMarketModelFromCovarianceModel.SimulationTimeInterpolationMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LIBORMarketModelFromCovarianceModel.SimulationTimeInterpolationMethod 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
-
-