Uses of Interface
net.finmath.modelling.ProductFactory
-
Packages that use ProductFactory Package Description net.finmath.modelling.productfactory Provides classes to build products from descriptors. -
-
Uses of ProductFactory in net.finmath.modelling.productfactory
Classes in net.finmath.modelling.productfactory that implement ProductFactory Modifier and Type Class Description class
InterestRateAnalyticProductFactory
Product factory of interest rate derivatives for use with an analytic model.class
InterestRateMonteCarloProductFactory
Product factory of interest rate derivatives for use with a Monte-Carlo method based model.class
ProductFactoryCascade<T extends ProductDescriptor>
Implements a product factory based on a cascade of given factories.class
SingleAssetFourierProductFactory
Product factory of single asset derivatives for use with a Fourier method based model.class
SingleAssetMonteCarloProductFactory
Product factory of single asset derivatives for use with a Monte-Carlo method based model.Methods in net.finmath.modelling.productfactory with parameters of type ProductFactory Modifier and Type Method Description ProductFactoryCascade<T>
ProductFactoryCascade. addFactoryAfter(ProductFactory<? extends T> factory)
Add a given factory to the list of factories at the END.ProductFactoryCascade<T>
ProductFactoryCascade. addFactoryBefore(ProductFactory<? extends T> factory)
Add a given factory to the list of factories at the BEGINNING.Constructor parameters in net.finmath.modelling.productfactory with type arguments of type ProductFactory Constructor Description ProductFactoryCascade(List<ProductFactory<? extends T>> factories)
Construct a factory cascade from an ordered list of product factories.
-