Module net.finmath.lib
Package net.finmath.interpolation
Enum RationalFunctionInterpolation.InterpolationMethod
java.lang.Object
java.lang.Enum<RationalFunctionInterpolation.InterpolationMethod>
net.finmath.interpolation.RationalFunctionInterpolation.InterpolationMethod
- All Implemented Interfaces:
Serializable
,Comparable<RationalFunctionInterpolation.InterpolationMethod>
,java.lang.constant.Constable
- Enclosing class:
- RationalFunctionInterpolation
public static enum RationalFunctionInterpolation.InterpolationMethod extends Enum<RationalFunctionInterpolation.InterpolationMethod>
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description AKIMA
Akima interpolation (C1 sub-spline interpolation).AKIMA_CONTINUOUS
Akima interpolation (C1 sub-spline interpolation) with a smoothing in the weights.CUBIC_SPLINE
Cubic spline interpolation.HARMONIC_SPLINE
Harmonic spline interpolation (C1 sub-spline interpolation).HARMONIC_SPLINE_WITH_MONOTONIC_FILTERING
Harmonic spline interpolation (C1 sub-spline interpolation) with a monotonic filtering at the boundary points.LINEAR
Linear interpolation.PIECEWISE_CONSTANT
Constant interpolation.PIECEWISE_CONSTANT_LEFTPOINT
Constant interpolation.PIECEWISE_CONSTANT_RIGHTPOINT
Constant interpolation using the value of the right end point of the interval. -
Method Summary
Modifier and Type Method Description static RationalFunctionInterpolation.InterpolationMethod
valueOf(String name)
Returns the enum constant of this type with the specified name.static RationalFunctionInterpolation.InterpolationMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PIECEWISE_CONSTANT
Constant interpolation. Synonym of PIECEWISE_CONSTANT_LEFTPOINT. -
PIECEWISE_CONSTANT_LEFTPOINT
Constant interpolation. Right continuous, i.e. using the value of the left end point of the interval. -
PIECEWISE_CONSTANT_RIGHTPOINT
Constant interpolation using the value of the right end point of the interval. -
LINEAR
Linear interpolation. -
CUBIC_SPLINE
Cubic spline interpolation. -
AKIMA
Akima interpolation (C1 sub-spline interpolation). -
AKIMA_CONTINUOUS
Akima interpolation (C1 sub-spline interpolation) with a smoothing in the weights. -
HARMONIC_SPLINE
Harmonic spline interpolation (C1 sub-spline interpolation). -
HARMONIC_SPLINE_WITH_MONOTONIC_FILTERING
public static final RationalFunctionInterpolation.InterpolationMethod HARMONIC_SPLINE_WITH_MONOTONIC_FILTERINGHarmonic spline interpolation (C1 sub-spline interpolation) with a monotonic filtering at the boundary points.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-