All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.finmath.modelling.DescribedProduct Maven / Gradle / Ivy

Go to download

finmath lib is a Mathematical Finance Library in Java. It provides algorithms and methodologies related to mathematical finance.

There is a newer version: 6.0.19
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy