Module net.finmath.lib
Class CurveInterpolation.Builder
java.lang.Object
net.finmath.marketdata2.model.curves.CurveInterpolation.Builder
- All Implemented Interfaces:
CurveBuilder
- Enclosing class:
- CurveInterpolation
A builder (following the builder pattern) for CurveFromInterpolationPoints objects.
Allows to successively construct a curveFromInterpolationPoints object by adding points.
- Author:
- Christian Fries
-
Constructor Summary
ConstructorsConstructorDescriptionBuilder()
Build a curveFromInterpolationPoints.Build a curveFromInterpolationPoints with a given name and given reference date.Builder(CurveInterpolation curveInterpolation)
Build a curveFromInterpolationPoints by cloning a given curveFromInterpolationPoints. -
Method Summary
Modifier and TypeMethodDescriptionaddPoint(double time, RandomVariable value, boolean isParameter)
Add a point to the curve.build()
Build the curve.setExtrapolationMethod(CurveInterpolation.ExtrapolationMethod extrapolationMethod)
Set the extrapolation method of the curveFromInterpolationPoints.setInterpolationEntity(CurveInterpolation.InterpolationEntity interpolationEntity)
Set the interpolationEntity of the curveFromInterpolationPoints.setInterpolationMethod(CurveInterpolation.InterpolationMethod interpolationMethod)
Set the interpolation method of the curveFromInterpolationPoints.
-
Constructor Details
-
Builder
public Builder()Build a curveFromInterpolationPoints. -
Builder
Build a curveFromInterpolationPoints with a given name and given reference date.- Parameters:
name
- The name of this curveFromInterpolationPoints.referenceDate
- The reference date for this curveFromInterpolationPoints, i.e., the date which defined t=0.
-
Builder
Build a curveFromInterpolationPoints by cloning a given curveFromInterpolationPoints.- Parameters:
curveInterpolation
- A curveFromInterpolationPoints to be used as starting point for the new curveFromInterpolationPoints.- Throws:
CloneNotSupportedException
- Thrown, when the curveFromInterpolationPoints could not be cloned.
-
-
Method Details
-
build
Description copied from interface:CurveBuilder
Build the curve. The method returns the curve object. The builder cannot be used to build another curve. Use clone instead.- Specified by:
build
in interfaceCurveBuilder
- Returns:
- The curve according to the specification.
-
setInterpolationMethod
public CurveBuilder setInterpolationMethod(CurveInterpolation.InterpolationMethod interpolationMethod)Set the interpolation method of the curveFromInterpolationPoints.- Parameters:
interpolationMethod
- The interpolation method of the curveFromInterpolationPoints.- Returns:
- A self reference to this curveFromInterpolationPoints build object.
-
setExtrapolationMethod
public CurveBuilder setExtrapolationMethod(CurveInterpolation.ExtrapolationMethod extrapolationMethod)Set the extrapolation method of the curveFromInterpolationPoints.- Parameters:
extrapolationMethod
- The extrapolation method of the curveFromInterpolationPoints.- Returns:
- A self reference to this curveFromInterpolationPoints build object.
-
setInterpolationEntity
public CurveBuilder setInterpolationEntity(CurveInterpolation.InterpolationEntity interpolationEntity)Set the interpolationEntity of the curveFromInterpolationPoints.- Parameters:
interpolationEntity
- The interpolation entity of the curveFromInterpolationPoints.- Returns:
- A self reference to this curveFromInterpolationPoints build object.
-
addPoint
Description copied from interface:CurveBuilder
Add a point to the curve.- Specified by:
addPoint
in interfaceCurveBuilder
- Parameters:
time
- The time of the corresponding point.value
- The value of the corresponding point.isParameter
- A boolean, specifying weather the point should be considered a free parameter (true) or not (false). Fee parameters can be used to create a clone with modified values, seeCurveInterpolation.getCloneForParameter(RandomVariable[])
- Returns:
- A self reference to this curve build object.
-