net.finmath.modelling.DescribedProduct 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.
package net.finmath.modelling;
/**
* Interface for products which can provide a complete description of themself, i.e. the model parameters (independent of the implementation of the numerical method).
*
* @author Christian Fries
*
* @param An interface extending the ProductDescriptor
interface, being rich enough to describe the product implementing this interface.
* @version 1.0
*/
public interface DescribedProduct extends Product {
/**
* Return a product descriptor representing this product.
*
* @return The product descriptor of this product.
*/
T getDescriptor();
}