net.finmath.equities.pricer.EquityValuationResult 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.equities.pricer;
import java.util.HashMap;
import net.finmath.equities.pricer.EquityValuationRequest.CalculationRequestType;
/**
* Class to store a pricing result provided by implementations of the IOptionPricer interface.
*
* @author Andreas Grotz
*/
public class EquityValuationResult {
private final EquityValuationRequest request;
private final HashMap results;
public EquityValuationResult(
final EquityValuationRequest request, final HashMap results)
{
this.request = request;
this.results = results;
}
}