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
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAkima interpolation (C1 sub-spline interpolation).Akima interpolation (C1 sub-spline interpolation) with a smoothing in the weights.Cubic spline interpolation.Harmonic spline interpolation (C1 sub-spline interpolation).Harmonic spline interpolation (C1 sub-spline interpolation) with a monotonic filtering at the boundary points.Linear interpolation.Constant interpolation.Constant interpolation.Constant interpolation using the value of the right end point of the interval. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.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
-