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

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

Go to download

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

The newest version!
/*
 * (c) Copyright Christian P. Fries, Germany. Contact: [email protected].
 *
 * Created on 09.02.2018
 */

package net.finmath.modelling;

/**
 *
 * @author Christian Fries
 * @author Luca Del Re
 *
 * @param 

The base class of the product descriptors which can be handled by this ProductFactory. * @version 1.0 */ public interface ProductFactory

{ /** * Constructs the product from a given product descriptor. * * @param descriptor A product descriptor. * @return An instance of the product describable by this descriptor. */ DescribedProduct getProductFromDescriptor(ProductDescriptor descriptor); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy