Enum EventType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<EventType>

    public enum EventType
    extends java.lang.Enum<EventType>
    • Enum Constant Detail

      • signature_request_viewed

        public static final EventType signature_request_viewed
      • signature_request_signed

        public static final EventType signature_request_signed
      • signature_request_sent

        public static final EventType signature_request_sent
      • signature_request_all_signed

        public static final EventType signature_request_all_signed
      • signature_request_invalid

        public static final EventType signature_request_invalid
      • signature_request_remind

        public static final EventType signature_request_remind
      • signature_request_destroyed

        public static final EventType signature_request_destroyed
      • signature_request_canceled

        public static final EventType signature_request_canceled
      • signature_request_declined

        public static final EventType signature_request_declined
      • account_confirmed

        public static final EventType account_confirmed
      • template_created

        public static final EventType template_created
      • template_error

        public static final EventType template_error
      • file_error

        public static final EventType file_error
      • callback_test

        public static final EventType callback_test
      • unknown_error

        public static final EventType unknown_error
      • sign_url_invalid

        public static final EventType sign_url_invalid
      • signature_request_email_bounce

        public static final EventType signature_request_email_bounce
      • signature_request_downloadable

        public static final EventType signature_request_downloadable
      • signature_request_delegated

        public static final EventType signature_request_delegated
    • Method Detail

      • values

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

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