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