Examples of ExchangeID


Examples of com.barchart.feed.api.model.meta.id.ExchangeID

  /**
   * Representation of a symbol on the given exchange from the default data
   * vendor.
   */
  public DefaultLookupSymbol(final String exchangeMic_, final String symbol_) {
    this(Vendor.DEFAULT.id(), new ExchangeID(exchangeMic_), symbol_);
  }
View Full Code Here

Examples of com.barchart.feed.api.model.meta.id.ExchangeID

  private static ExchangeID exchange(final String in) {

    if (in == null || in.isEmpty() || "*".equals(in))
      return null;

    return new ExchangeID(in.toUpperCase());

  }
View Full Code Here

Examples of com.barchart.feed.api.model.meta.id.ExchangeID

        final String code,
        final String zone) {

      this.desc = desc.intern();
      this.zone = zone;
      id = new ExchangeID(code);

    }
View Full Code Here

Examples of com.barchart.feed.api.model.meta.id.ExchangeID

    ExchangeImpl(final String desc, final String code,
        final String zone) {
     
      this.desc = desc.intern();
      this.zone = zone;
      id = new ExchangeID(code);
     
    }
View Full Code Here

Examples of com.barchart.feed.api.model.meta.id.ExchangeID

    ExchangeImpl(final String desc, final String code,
        final String zone) {

      this.desc = desc.intern();
      this.zone = zone;
      id = new ExchangeID(code);

    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.