- java.lang.Object
-
- net.finmath.marketdata.model.curves.AbstractCurve
-
- net.finmath.marketdata.model.bond.BondCurve
-
- All Implemented Interfaces:
Serializable,Cloneable,ParameterObject,Curve
public class BondCurve extends AbstractCurve
Implements the bond curve as a curve object, seeCurve. The bond curve is built as a product of a given reference discount curve and spread curve. Since it is not clear in general if the reference curve or the spread curve are given in terms of discount factors or zero rates, this class distinguishes between all possible cases of types. For the curve types provided seeBondCurve.Type.- Version:
- 1.0
- Author:
- Moritz Scherrmann
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBondCurve.TypePossible curve types, where the first term stands for the reference discount curve and the second term stands for the spread curve.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CurveBuildergetCloneBuilder()Returns a curve builder bases on a clone of this curve.doublegetDiscountFactor(double time)doublegetDiscountFactor(AnalyticModel model, double time)StringgetName()Get the name of the curve.double[]getParameter()Get the current parameter associated with the state of the objects.CurvegetReferenceCurve()LocalDategetReferenceDate()Return the reference date of this curve, i.e.CurvegetSpreadCurve()StringgetType()doublegetValue(double time)Returns the value for the time using the interpolation method associated with this curve.doublegetValue(AnalyticModel model, double time)Returns the value for the time using the interpolation method associated with this curve within a given context, i.e., a model.doublegetZeroRate(double maturity)Returns the zero rate for a given maturity, i.e., -ln(df(T)) / T where T is the given maturity and df(T) is the discount factor at time $T$.voidsetParameter(double[] parameter)Set the current parameter and change the state of the objects.-
Methods inherited from class net.finmath.marketdata.model.curves.AbstractCurve
clone, getCloneForParameter, getValues, toString
-
-
-
-
Constructor Detail
-
BondCurve
public BondCurve(String name, LocalDate referenceDate, Curve referenceCurve, Curve spreadCurve, BondCurve.Type type)
Creates a bond curve.- Parameters:
name- Name of the curve.referenceDate- The reference date for this curve, i.e., the date which defined t=0.referenceCurve- The reference discount curve.spreadCurve- The given spread curve.type- The types of the given curves "referenceCurve" and "spreadCurve" (discount factor or zero rate)
-
-
Method Detail
-
getValue
public double getValue(double time)
Description copied from interface:CurveReturns the value for the time using the interpolation method associated with this curve.- Specified by:
getValuein interfaceCurve- Overrides:
getValuein classAbstractCurve- Parameters:
time- Time for which the value should be returned.- Returns:
- The value at the give time.
-
getValue
public double getValue(AnalyticModel model, double time)
Description copied from interface:CurveReturns the value for the time using the interpolation method associated with this curve within a given context, i.e., a model. The model (context) is needed only if the curve relies on another curve. Examples are a forward curve which relies on a discount curve or a discount curve which is defined via a spread over another curve.- Parameters:
model- An analytic model providing a context.time- Time for which the value should be returned.- Returns:
- The value at the give time.
-
getDiscountFactor
public double getDiscountFactor(double time)
-
getDiscountFactor
public double getDiscountFactor(AnalyticModel model, double time)
-
getZeroRate
public double getZeroRate(double maturity)
Returns the zero rate for a given maturity, i.e., -ln(df(T)) / T where T is the given maturity and df(T) is the discount factor at time $T$.- Parameters:
maturity- The given maturity.- Returns:
- The zero rate.
-
getCloneBuilder
public CurveBuilder getCloneBuilder() throws CloneNotSupportedException
Description copied from interface:CurveReturns a curve builder bases on a clone of this curve. Using that curve builder you may create a new curve from this curve by adding points or changing properties. Note: The clone has the same name than this one.- Returns:
- An object implementing the CurveBuilderInterface where the underlying curve is a clone of this curve.
- Throws:
CloneNotSupportedException- Thrown, when this curve could not be cloned.
-
getName
public String getName()
Description copied from interface:CurveGet the name of the curve.- Specified by:
getNamein interfaceCurve- Overrides:
getNamein classAbstractCurve- Returns:
- The name of this curve
-
getReferenceDate
public LocalDate getReferenceDate()
Description copied from interface:CurveReturn the reference date of this curve, i.e. the date associated with t=0. May be null in case the curve is not associated with a fixed date (e.g. a time homogenous model).- Specified by:
getReferenceDatein interfaceCurve- Overrides:
getReferenceDatein classAbstractCurve- Returns:
- The date identified as t=0.
-
getReferenceCurve
public Curve getReferenceCurve()
-
getSpreadCurve
public Curve getSpreadCurve()
-
getType
public String getType()
-
getParameter
public double[] getParameter()
Description copied from interface:ParameterObjectGet the current parameter associated with the state of the objects.- Returns:
- The parameter.
-
setParameter
public void setParameter(double[] parameter)
Description copied from interface:ParameterObjectSet the current parameter and change the state of the objects.- Parameters:
parameter- The parameter associated with the new state of the objects.
-
-