30313233343536
/** * 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_); }
106107108109110111112113
private static ExchangeID exchange(final String in) { if (in == null || in.isEmpty() || "*".equals(in)) return null; return new ExchangeID(in.toUpperCase()); }
287288289290291292293294
final String code, final String zone) { this.desc = desc.intern(); this.zone = zone; id = new ExchangeID(code); }
274275276277278279280281
ExchangeImpl(final String desc, final String code, final String zone) { this.desc = desc.intern(); this.zone = zone; id = new ExchangeID(code); }
275276277278279280281282