360361362363364365366367368
if (!def.hasMinimumPriceIncrement()) { return Price.NULL; } final Decimal d = def.getMinimumPriceIncrement(); return factory.newPrice(d.getMantissa(), d.getExponent()); }
372373374375376377378379380
if (!def.hasContractPointValue()) { return Price.NULL; } final Decimal d = def.getContractPointValue(); return factory.newPrice(d.getMantissa(), d.getExponent()); }
476477478479480481482483484
public Price strikePrice() { if (!def.hasOptionStrike()) return Price.NULL; final Decimal d = def.getOptionStrike(); return factory.newPrice(d.getMantissa(), d.getExponent()); }