public static enum SignatureService.SigningDisposition extends Enum<SignatureService.SigningDisposition>
Enum Constant and Description |
---|
ARCHIVE
Replace the main blob with the signed one and archive the original.
|
ATTACH
Put the signed blob as an attachment.
|
REPLACE
Replace the main blob with the signed one.
|
Modifier and Type | Method and Description |
---|---|
static SignatureService.SigningDisposition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SignatureService.SigningDisposition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignatureService.SigningDisposition REPLACE
public static final SignatureService.SigningDisposition ARCHIVE
public static final SignatureService.SigningDisposition ATTACH
public static SignatureService.SigningDisposition[] values()
for (SignatureService.SigningDisposition c : SignatureService.SigningDisposition.values()) System.out.println(c);
public static SignatureService.SigningDisposition valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2017 Nuxeo. All rights reserved.