Enum EventTypes

    • Enum Constant Detail

      • ENVELOPE_SENT

        public static final EventTypes ENVELOPE_SENT
      • ENVELOPE_DELIVERED

        public static final EventTypes ENVELOPE_DELIVERED
      • ENVELOPE_COMPLETED

        public static final EventTypes ENVELOPE_COMPLETED
      • ENVELOPE_DECLINED

        public static final EventTypes ENVELOPE_DECLINED
      • ENVELOPE_VOIDED

        public static final EventTypes ENVELOPE_VOIDED
      • ENVELOPE_CREATED

        public static final EventTypes ENVELOPE_CREATED
      • ENVELOPE_RESENT

        public static final EventTypes ENVELOPE_RESENT
      • ENVELOPE_CORRECTED

        public static final EventTypes ENVELOPE_CORRECTED
      • ENVELOPE_PURGE

        public static final EventTypes ENVELOPE_PURGE
      • ENVELOPE_DELETED

        public static final EventTypes ENVELOPE_DELETED
      • ENVELOPE_DISCARD

        public static final EventTypes ENVELOPE_DISCARD
      • DELIVERY_FAILED

        public static final EventTypes DELIVERY_FAILED
      • AUTHENTICATION_FAILED

        public static final EventTypes AUTHENTICATION_FAILED
      • DELIVERED

        public static final EventTypes DELIVERED
      • COMPLETED

        public static final EventTypes COMPLETED
    • Method Detail

      • values

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

        public static EventTypes 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
      • getValue

        public String getValue()