Enum WorksheetStatusId

    • Enum Constant Detail

      • PendingApproval

        public static final WorksheetStatusId PendingApproval
        No comment data provided
      • ApprovedToFile

        public static final WorksheetStatusId ApprovedToFile
        No comment data provided
      • PendingFiling

        public static final WorksheetStatusId PendingFiling
        No comment data provided
      • PendingFilingOnBehalf

        public static final WorksheetStatusId PendingFilingOnBehalf
        No comment data provided
      • FiledOnBehalf

        public static final WorksheetStatusId FiledOnBehalf
        No comment data provided
      • ReturnAccepted

        public static final WorksheetStatusId ReturnAccepted
        No comment data provided
      • ReturnAcceptedOnBehalf

        public static final WorksheetStatusId ReturnAcceptedOnBehalf
        No comment data provided
      • PaymentRemitted

        public static final WorksheetStatusId PaymentRemitted
        No comment data provided
      • PendingReturn

        public static final WorksheetStatusId PendingReturn
        No comment data provided
      • PendingReturnOnBehalf

        public static final WorksheetStatusId PendingReturnOnBehalf
        No comment data provided
      • DoNotFile

        public static final WorksheetStatusId DoNotFile
        No comment data provided
      • ReturnRejected

        public static final WorksheetStatusId ReturnRejected
        No comment data provided
      • ReturnRejectedOnBehalf

        public static final WorksheetStatusId ReturnRejectedOnBehalf
        No comment data provided
      • ApprovedToFileOnBehalf

        public static final WorksheetStatusId ApprovedToFileOnBehalf
        No comment data provided
    • Method Detail

      • values

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

        public static WorksheetStatusId valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null