Package com.docusign.webforms.model
Enum InstanceRecipientStatus
- java.lang.Object
-
- java.lang.Enum<InstanceRecipientStatus>
-
- com.docusign.webforms.model.InstanceRecipientStatus
-
- All Implemented Interfaces:
Serializable,Comparable<InstanceRecipientStatus>
public enum InstanceRecipientStatus extends Enum<InstanceRecipientStatus>
The current status of the instance for the recipient
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IN_PROGRESSINITIATEDSUBMITTED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InstanceRecipientStatusfromValue(String value)StringgetValue()StringtoString()static InstanceRecipientStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static InstanceRecipientStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INITIATED
public static final InstanceRecipientStatus INITIATED
-
IN_PROGRESS
public static final InstanceRecipientStatus IN_PROGRESS
-
SUBMITTED
public static final InstanceRecipientStatus SUBMITTED
-
-
Method Detail
-
values
public static InstanceRecipientStatus[] 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 (InstanceRecipientStatus c : InstanceRecipientStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InstanceRecipientStatus 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<InstanceRecipientStatus>
-
fromValue
public static InstanceRecipientStatus fromValue(String value)
-
-