java.lang.Object
net.finmath.singleswaprate.data.DataTableBasic
- All Implemented Interfaces:
Serializable,Cloneable,DataTable
- Direct Known Subclasses:
DataTableInterpolated,DataTableLinear
A basic implementation of
DataTable, which provides no means of inter- or extrapolation.- Author:
- Christian Fries, Roland Bachl
- See Also:
- Serialized Form
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected classNested class to use as key in values map.Nested classes/interfaces inherited from interface net.finmath.singleswaprate.data.DataTable
DataTable.TableConvention -
Constructor Summary
ConstructorsConstructorDescriptionDataTableBasic(String name, DataTable.TableConvention convention, LocalDate referenceDate, SchedulePrototype scheduleMetaData)Create an empty table.DataTableBasic(String name, DataTable.TableConvention convention, LocalDate referenceDate, SchedulePrototype scheduleMetaData, int[] maturities, int[] terminations, double[] values)Create a table.DataTableBasic(String name, DataTable.TableConvention convention, LocalDate referenceDate, SchedulePrototype scheduleMetaData, List<Integer> maturities, List<Integer> terminations, List<Double> values)Create a table. -
Method Summary
Modifier and TypeMethodDescriptionaddPoint(int maturity, int termination, double value)Add a point to the grid of the table.addPoints(int[] maturities, int[] terminations, double[] values)Add an array of points to the table.clone()booleancontainsEntryFor(double maturity, double termination)Checks whether the table has an actual entry at the specified coordinates.booleancontainsEntryFor(int maturity, int termination)Checks whether the table has an actual entry at the specified coordinates.Returns the convention the table understands its coordinates in.Get a sorted set view of all maturities in the table.getMaturitiesForTermination(int termination)Get a sorted set view of all maturities for a speceific termination in the table.getName()The reference date of the table.Get a sorted set view of all terminations in the table.getTerminationsForMaturity(int maturity)Get a sorted set view of all terminations for a specific maturity in the table.doublegetValue(double maturity, double termination)Returns the value of the table at a given time.doublegetValue(int maturity, int termination)Returns the value of the table at a given time.protected doubleintsize()toString()toString(double unit)static DataTableBasicupgradeDataTableLight(DataTableLight baseTable, LocalDate referenceDate, SchedulePrototype scheduleMetaData)Create a DataTableBasic by upgrading aDataTableLightto allow access via double representation.
-
Constructor Details
-
DataTableBasic
public DataTableBasic(String name, DataTable.TableConvention convention, LocalDate referenceDate, SchedulePrototype scheduleMetaData)Create an empty table.- Parameters:
name- The name of the table.convention- The convention of the table.referenceDate- The referenceDate of the table.scheduleMetaData- The schedule meta data of the table.
-
DataTableBasic
public DataTableBasic(String name, DataTable.TableConvention convention, LocalDate referenceDate, SchedulePrototype scheduleMetaData, int[] maturities, int[] terminations, double[] values)Create a table.- Parameters:
name- The name of the table.convention- The convention of the table.referenceDate- The referenceDate of the table.scheduleMetaData- The schedule meta data of the table.maturities- The maturities of the points as offset with respect to the reference date.terminations- The terminations of the points as offset with respect to the maturity date.values- The values at the points.
-
DataTableBasic
public DataTableBasic(String name, DataTable.TableConvention convention, LocalDate referenceDate, SchedulePrototype scheduleMetaData, List<Integer> maturities, List<Integer> terminations, List<Double> values)Create a table.- Parameters:
name- The name of the table.convention- The convention of the table.referenceDate- The referenceDate of the table.scheduleMetaData- The schedule meta data of the table.maturities- The maturities of the points as offset with respect to the reference date.terminations- The terminations of the points as offset with respect to the maturity date.values- The values at the points.
-
-
Method Details
-
upgradeDataTableLight
public static DataTableBasic upgradeDataTableLight(DataTableLight baseTable, LocalDate referenceDate, SchedulePrototype scheduleMetaData)Create a DataTableBasic by upgrading aDataTableLightto allow access via double representation.- Parameters:
baseTable- The table to be upgraded.referenceDate- The reference date.scheduleMetaData- The schedule meta data of the table.- Returns:
- The upgraded table.
-
addPoint
Description copied from interface:DataTableAdd a point to the grid of the table.- Specified by:
addPointin interfaceDataTable- Parameters:
maturity- The maturity of the point as offset with respect to the reference date.termination- The termination of the point as offset with respect to the maturity date.value- The value at the point.- Returns:
- The table with the point added.
-
addPoints
Description copied from interface:DataTableAdd an array of points to the table.- Specified by:
addPointsin interfaceDataTable- Parameters:
maturities- The maturities of the points as offset with respect to the reference date.terminations- The terminations of the points as offset with respect to the maturity date.values- The values at the points.- Returns:
- The table with the point added.
-
getValue
public double getValue(int maturity, int termination)Description copied from interface:DataTableReturns the value of the table at a given time. Interpolates if the table is set up to do so. -
getValue
public double getValue(double maturity, double termination)Description copied from interface:DataTableReturns the value of the table at a given time. Interpolates if the table is set up to do so. -
size
public int size() -
containsEntryFor
public boolean containsEntryFor(int maturity, int termination)Description copied from interface:DataTableChecks whether the table has an actual entry at the specified coordinates. Note that even if this returns false the table may provide a value when callinggetValueon these coordinates as the table may interpolate/extrapolate.- Specified by:
containsEntryForin interfaceDataTable- Parameters:
maturity- The maturity as offset with respect to the reference date.termination- The termination as offset with respect to the maturity date.- Returns:
- True if the table contains a data point at the coordinates, false otherwise.
-
containsEntryFor
public boolean containsEntryFor(double maturity, double termination)Description copied from interface:DataTableChecks whether the table has an actual entry at the specified coordinates. Note that even if this returns false the table may provide a value when callinggetValueon these coordinates as the table may interpolate/extrapolate.- Specified by:
containsEntryForin interfaceDataTable- Parameters:
maturity- Maturity in double as year fraction with respect to reference date.termination- Termination in double as year fraction with respect to reference date.- Returns:
- True if the table contains a data point at the coordinates, false otherwise.
-
getMaturities
Description copied from interface:DataTableGet a sorted set view of all maturities in the table.- Specified by:
getMaturitiesin interfaceDataTable- Returns:
- The maturities as sorted set.
-
getTerminations
Description copied from interface:DataTableGet a sorted set view of all terminations in the table.- Specified by:
getTerminationsin interfaceDataTable- Returns:
- The terminations as sorted set.
-
getTerminationsForMaturity
Description copied from interface:DataTableGet a sorted set view of all terminations for a specific maturity in the table.- Specified by:
getTerminationsForMaturityin interfaceDataTable- Parameters:
maturity- The maturity for which to get the terminations.- Returns:
- The terminations as sorted set.
-
getMaturitiesForTermination
Description copied from interface:DataTableGet a sorted set view of all maturities for a speceific termination in the table.- Specified by:
getMaturitiesForTerminationin interfaceDataTable- Parameters:
termination- The termination for which to get the maturities.- Returns:
- The maturities as sorted set.
-
getName
-
getReferenceDate
Description copied from interface:DataTableThe reference date of the table.- Specified by:
getReferenceDatein interfaceDataTable- Returns:
- The reference date.
-
getConvention
Description copied from interface:DataTableReturns the convention the table understands its coordinates in. As offset form the reference date.- Specified by:
getConventionin interfaceDataTable- Returns:
- The convention of the table.
-
getScheduleMetaData
- Specified by:
getScheduleMetaDatain interfaceDataTable- Returns:
- The meta data as
SchedulePrototypeused by the table to convert int and double representations.
-
clone
-
toString
-
toString
-
getValue
-