Enum SignatureAppearance.SignatureAppearanceMode
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum SignatureAppearance.SignatureAppearanceMode extends Enum<SignatureAppearance.SignatureAppearanceMode>
Controls how the digital signature will appear after signing.
-
-
Field Summary
Fields Modifier and Type Field Description private final EnumEntries<SignatureAppearance.SignatureAppearanceMode>
entries
-
Enum Constant Summary
Enum Constants Enum Constant Description SIGNATURE_AND_DESCRIPTION
Show an ink signature drawing and the description (date, reason, etc.).
DESCRIPTION_ONLY
Show the signature description (date, reason, etc.). The left part will be "Digitally signed by", instead of a "real" ink signature.
SIGNATURE_ONLY
Show the signature watermark only (full size). All other properties are ignored.
-
Method Summary
Modifier and Type Method Description final SignatureAppearance.SignatureAppearanceMode
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<SignatureAppearance.SignatureAppearanceMode>
values()
Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<SignatureAppearance.SignatureAppearanceMode>
getEntries()
Controls how the digital signature will appear after signing. -
-
Method Detail
-
valueOf
final SignatureAppearance.SignatureAppearanceMode valueOf(String value)
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.)
-
values
final Array<SignatureAppearance.SignatureAppearanceMode> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<SignatureAppearance.SignatureAppearanceMode> getEntries()
Controls how the digital signature will appear after signing.
-
-
-
-