net.finmath.equities.products.EuropeanOption Maven / Gradle / Ivy
package net.finmath.equities.products;
import java.time.LocalDate;
/**
* Class for European options.
*
* @author Andreas Grotz
*/
public class EuropeanOption extends AbstractOption {
public EuropeanOption(LocalDate expiryDate, double strike, boolean isCallOption) {
super(expiryDate, strike, isCallOption);
}
@Override
public boolean isAmericanOption() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy