Enum RecipientSetInfo.RecipientRole
- java.lang.Object
-
- java.lang.Enum<RecipientSetInfo.RecipientRole>
-
- com.adobe.aem.adobesign.recipient.RecipientSetInfo.RecipientRole
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RecipientSetInfo.RecipientRole>
- Enclosing class:
- RecipientSetInfo
public static enum RecipientSetInfo.RecipientRole extends java.lang.Enum<RecipientSetInfo.RecipientRole>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCEPTOR
APPROVER
CERTIFIED_RECIPIENT
DELEGATE_TO_ACCEPTOR
DELEGATE_TO_APPROVER
DELEGATE_TO_CERTIFIED_RECIPIENT
DELEGATE_TO_FORM_FILLER
DELEGATE_TO_SIGNER
FORM_FILLER
SIGNER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RecipientSetInfo.RecipientRole
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RecipientSetInfo.RecipientRole[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SIGNER
public static final RecipientSetInfo.RecipientRole SIGNER
-
APPROVER
public static final RecipientSetInfo.RecipientRole APPROVER
-
ACCEPTOR
public static final RecipientSetInfo.RecipientRole ACCEPTOR
-
FORM_FILLER
public static final RecipientSetInfo.RecipientRole FORM_FILLER
-
CERTIFIED_RECIPIENT
public static final RecipientSetInfo.RecipientRole CERTIFIED_RECIPIENT
-
DELEGATE_TO_SIGNER
public static final RecipientSetInfo.RecipientRole DELEGATE_TO_SIGNER
-
DELEGATE_TO_APPROVER
public static final RecipientSetInfo.RecipientRole DELEGATE_TO_APPROVER
-
DELEGATE_TO_ACCEPTOR
public static final RecipientSetInfo.RecipientRole DELEGATE_TO_ACCEPTOR
-
DELEGATE_TO_FORM_FILLER
public static final RecipientSetInfo.RecipientRole DELEGATE_TO_FORM_FILLER
-
DELEGATE_TO_CERTIFIED_RECIPIENT
public static final RecipientSetInfo.RecipientRole DELEGATE_TO_CERTIFIED_RECIPIENT
-
-
Method Detail
-
values
public static RecipientSetInfo.RecipientRole[] 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 (RecipientSetInfo.RecipientRole c : RecipientSetInfo.RecipientRole.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RecipientSetInfo.RecipientRole 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 namejava.lang.NullPointerException
- if the argument is null
-
-