Package com.longbridge.quote
Class SecurityStaticInfo
- java.lang.Object
-
- com.longbridge.quote.SecurityStaticInfo
-
public class SecurityStaticInfo extends Object
Basic (static) information of a security.
-
-
Constructor Summary
Constructors Constructor Description SecurityStaticInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SecurityBoardgetBoard()Returns the security board.BigDecimalgetBps()Returns the net assets per share.longgetCirculatingShares()Returns the number of circulating shares.StringgetCurrency()Returns the trading currency.BigDecimalgetDividendYield()Returns the dividend yield.BigDecimalgetEps()Returns the earnings per share.BigDecimalgetEpsTtm()Returns the earnings per share (TTM).StringgetExchange()Returns the exchange the security is listed on.longgetHkShares()Returns the number of HK shares (only for HK stocks).intgetLotSize()Returns the lot size.StringgetNameCn()Returns the security name in simplified Chinese.StringgetNameEn()Returns the security name in English.StringgetNameHk()Returns the security name in traditional Chinese.DerivativeType[]getStockDerivatives()Returns the supported derivative types for this security.StringgetSymbol()Returns the security code.longgetTotalShares()Returns the total number of issued shares.StringtoString()
-
-
-
Method Detail
-
getSymbol
public String getSymbol()
Returns the security code.- Returns:
- the security code
-
getNameCn
public String getNameCn()
Returns the security name in simplified Chinese.- Returns:
- the security name in simplified Chinese
-
getNameEn
public String getNameEn()
Returns the security name in English.- Returns:
- the security name in English
-
getNameHk
public String getNameHk()
Returns the security name in traditional Chinese.- Returns:
- the security name in traditional Chinese
-
getExchange
public String getExchange()
Returns the exchange the security is listed on.- Returns:
- the exchange
-
getCurrency
public String getCurrency()
Returns the trading currency.- Returns:
- the trading currency
-
getLotSize
public int getLotSize()
Returns the lot size.- Returns:
- the lot size
-
getTotalShares
public long getTotalShares()
Returns the total number of issued shares.- Returns:
- the total number of issued shares
-
getCirculatingShares
public long getCirculatingShares()
Returns the number of circulating shares.- Returns:
- the number of circulating shares
-
getHkShares
public long getHkShares()
Returns the number of HK shares (only for HK stocks).- Returns:
- the number of HK shares
-
getEps
public BigDecimal getEps()
Returns the earnings per share.- Returns:
- the earnings per share
-
getEpsTtm
public BigDecimal getEpsTtm()
Returns the earnings per share (TTM).- Returns:
- the earnings per share (TTM)
-
getBps
public BigDecimal getBps()
Returns the net assets per share.- Returns:
- the net assets per share
-
getDividendYield
public BigDecimal getDividendYield()
Returns the dividend yield.- Returns:
- the dividend yield
-
getStockDerivatives
public DerivativeType[] getStockDerivatives()
Returns the supported derivative types for this security.- Returns:
- the supported derivative types
-
getBoard
public SecurityBoard getBoard()
Returns the security board.- Returns:
- the security board
-
-