Enum FinancialStatus

    • Enum Constant Detail

      • BELOW_CONTINUING_LISTING_STANDARDS

        public static final FinancialStatus BELOW_CONTINUING_LISTING_STANDARDS
      • BANKRUPT_AND_BELOW_CONTINUING_LISTING_STANDARDS

        public static final FinancialStatus BANKRUPT_AND_BELOW_CONTINUING_LISTING_STANDARDS
      • BANKRUPT_AND_LATE_FILING

        public static final FinancialStatus BANKRUPT_AND_LATE_FILING
      • BELOW_CONTINUING_LISTING_STANDARDS_LATE_FILING

        public static final FinancialStatus BELOW_CONTINUING_LISTING_STANDARDS_LATE_FILING
      • BANKRUPT_AND_BELOW_CONTINUING_LISTING_STANDARDS_AND_LATE_FILING

        public static final FinancialStatus BANKRUPT_AND_BELOW_CONTINUING_LISTING_STANDARDS_AND_LATE_FILING
      • CREATIONS_SUSPENDED

        public static final FinancialStatus CREATIONS_SUSPENDED
      • REDEMPTIONS_SUSPENDED

        public static final FinancialStatus REDEMPTIONS_SUSPENDED
    • Method Detail

      • values

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

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