Package com.docusign.maestro.model
Enum EventTypes
- java.lang.Object
-
- java.lang.Enum<EventTypes>
-
- com.docusign.maestro.model.EventTypes
-
- All Implemented Interfaces:
Serializable,Comparable<EventTypes>
public enum EventTypes extends Enum<EventTypes>
The Trigger Event types
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EventTypesfromValue(String value)StringgetValue()StringtoString()static EventTypesvalueOf(String name)Returns the enum constant of this type with the specified name.static EventTypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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
-
SENT
public static final EventTypes SENT
-
DELIVERED
public static final EventTypes DELIVERED
-
SIGNED
public static final EventTypes SIGNED
-
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 nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<EventTypes>
-
fromValue
public static EventTypes fromValue(String value)
-
-