Back to project page StockTicker.
The source code is released under:
MIT License
If you think the Android project StockTicker listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.github.premnirmal.ticker.network; /*from w w w. ja va 2s.c o m*/ /** * Created by premnirmal on 12/21/14. */ public class Suggestion { // symbol: "AAPL", // name: "Apple Inc.", // exch: "NMS", // type: "S", // exchDisp: "NASDAQ", // typeDisp: "Equity" public String symbol; public String name; public String exch; public String type; public String exchDisp; public String typeDisp; public boolean isStock() { return "S".equalsIgnoreCase(type); } }