Enum IssueType

    • Enum Constant Detail

      • AMERICAN_DEPOSITORY_SHARES

        public static final IssueType AMERICAN_DEPOSITORY_SHARES
      • COMMON_STOCK

        public static final IssueType COMMON_STOCK
      • EXCHANGE_TRADED_PRODUCT

        public static final IssueType EXCHANGE_TRADED_PRODUCT
      • DEPOSITORY_RECEIPT

        public static final IssueType DEPOSITORY_RECEIPT
      • LIMITED_PARTNERSHIP

        public static final IssueType LIMITED_PARTNERSHIP
      • ORDINARY_SHARES

        public static final IssueType ORDINARY_SHARES
      • PREFERRED_SHARES

        public static final IssueType PREFERRED_SHARES
      • OTHER_SECURITIES

        public static final IssueType OTHER_SECURITIES
      • SHARES_OF_BENEFICIAL_INTEREST

        public static final IssueType SHARES_OF_BENEFICIAL_INTEREST
      • CONVERTIBLE_DEBENTURE

        public static final IssueType CONVERTIBLE_DEBENTURE
      • UNITS_OF_BENEFICIAL_INTEREST

        public static final IssueType UNITS_OF_BENEFICIAL_INTEREST
      • WARRANT

        public static final IssueType WARRANT
      • UNKNOWN

        public static final IssueType UNKNOWN
    • Method Detail

      • values

        public static IssueType[] 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 (IssueType c : IssueType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static IssueType 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