Enum ListingCenter

    • Enum Constant Detail

      • FINANCIAL_INDUSTRY_REGULATORY_AUTHORITY

        public static final ListingCenter FINANCIAL_INDUSTRY_REGULATORY_AUTHORITY
      • INTERNATIONAL_SECURITIES_EXCHANGE

        public static final ListingCenter INTERNATIONAL_SECURITIES_EXCHANGE
      • CHICAGO_STOCK_EXCHANGE

        public static final ListingCenter CHICAGO_STOCK_EXCHANGE
      • NEW_YORK_STOCK_EXCHANGE

        public static final ListingCenter NEW_YORK_STOCK_EXCHANGE
      • OVER_THE_COUNTER_MARKET

        public static final ListingCenter OVER_THE_COUNTER_MARKET
      • NASDAQ_STOCK_EXCHANGE

        public static final ListingCenter NASDAQ_STOCK_EXCHANGE
      • INVESTORS_EXCHANGE

        public static final ListingCenter INVESTORS_EXCHANGE
      • CBOE_STOCK_EXCHANGE

        public static final ListingCenter CBOE_STOCK_EXCHANGE
    • Method Detail

      • values

        public static ListingCenter[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ListingCenter c : ListingCenter.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ListingCenter valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null