net.finmath.montecarlo.interestrate.LIBORModelInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finmath-lib Show documentation
Show all versions of finmath-lib Show documentation
finmath lib is a Mathematical Finance Library in Java.
It provides algorithms and methodologies related to mathematical finance.
/*
* (c) Copyright Christian P. Fries, Germany. Contact: [email protected].
*
* Created on 04.02.2016
*/
package net.finmath.montecarlo.interestrate;
import java.util.Map;
import net.finmath.exception.CalculationException;
import net.finmath.stochastic.RandomVariableInterface;
import net.finmath.time.TimeDiscretizationInterface;
/**
* @author Christian Fries
*
*/
public interface LIBORModelInterface extends TermStructureModelInterface {
RandomVariableInterface getLIBOR(int timeIndex, int liborIndex) throws CalculationException;
/**
* The tenor time discretization of the forward rate curve.
*
* @return The tenor time discretization of the forward rate curve.
*/
TimeDiscretizationInterface getLiborPeriodDiscretization();
/**
* Get the number of LIBORs in the LIBOR discretization.
*
* @return The number of LIBORs in the LIBOR discretization
*/
int getNumberOfLibors();
/**
* The period start corresponding to a given forward rate discretization index.
*
* @param timeIndex The index corresponding to a given time (interpretation is start of period)
* @return The period start corresponding to a given forward rate discretization index.
*/
double getLiborPeriod(int timeIndex);
/**
* Same as java.util.Arrays.binarySearch(liborPeriodDiscretization,time). Will return a negative value if the time is not found, but then -index-1 corresponds to the index of the smallest time greater than the given one.
*
* @param time The period start.
* @return The index corresponding to a given time (interpretation is start of period)
*/
int getLiborPeriodIndex(double time);
/**
* Create a new object implementing LIBORModelInterface, using the new data.
*
* @param dataModified A map with values to be used in constructions (keys are identical to parameter names of the constructors).
* @return A new object implementing LIBORModelInterface, using the new data.
* @throws net.finmath.exception.CalculationException Thrown if the valuation fails, specific cause may be available via the cause()
method.
*/
@Override
LIBORModelInterface getCloneWithModifiedData(Map dataModified) throws CalculationException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy