Enum IssueEvent

    • Enum Constant Detail

      • SECURITY_ADDITION

        public static final IssueEvent SECURITY_ADDITION
      • ANTICIPATED_SECURITY_ADDITION

        public static final IssueEvent ANTICIPATED_SECURITY_ADDITION
      • ISSUE_SUSPENSION

        public static final IssueEvent ISSUE_SUSPENSION
      • ISSUE_DELETION

        public static final IssueEvent ISSUE_DELETION
      • NAME_SYMBOL_CHANGE

        public static final IssueEvent NAME_SYMBOL_CHANGE
      • FINANCIAL_STATUS_CHANGE

        public static final IssueEvent FINANCIAL_STATUS_CHANGE
      • CUSIP_CHANGE

        public static final IssueEvent CUSIP_CHANGE
      • TRADING_DETAILS_CHANGE

        public static final IssueEvent TRADING_DETAILS_CHANGE
      • NOT_AVAILABLE

        public static final IssueEvent NOT_AVAILABLE
    • Method Detail

      • values

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

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