Package com.longbridge.quote
Class StrikePriceInfo
- java.lang.Object
-
- com.longbridge.quote.StrikePriceInfo
-
public class StrikePriceInfo extends Object
Strike price information for an option chain.
-
-
Constructor Summary
Constructors Constructor Description StrikePriceInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCallSymbol()Returns the symbol of the call option at this strike.BigDecimalgetPrice()Returns the strike price.StringgetPutSymbol()Returns the symbol of the put option at this strike.booleanisStandard()Returns whether this is a standard strike price.StringtoString()
-
-
-
Method Detail
-
getPrice
public BigDecimal getPrice()
Returns the strike price.- Returns:
- the strike price
-
getCallSymbol
public String getCallSymbol()
Returns the symbol of the call option at this strike.- Returns:
- the call option symbol
-
getPutSymbol
public String getPutSymbol()
Returns the symbol of the put option at this strike.- Returns:
- the put option symbol
-
isStandard
public boolean isStandard()
Returns whether this is a standard strike price.- Returns:
trueif this is a standard strike price
-
-