public enum PDFSignatureType extends Enum<PDFSignatureType>
| Enum Constant and Description |
|---|
AUTHORSIG
The signature field is an author signature field.
|
NOSIG
This is not a signature field.
|
RECIPIENTSIG
The signature field is another type of signature field.
|
XMLSIG
The signature field is an XML signature field
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString()
Returns this type as a string.
|
static PDFSignatureType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PDFSignatureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PDFSignatureType AUTHORSIG
public static final PDFSignatureType RECIPIENTSIG
public static final PDFSignatureType XMLSIG
public static final PDFSignatureType NOSIG
public static PDFSignatureType[] values()
for (PDFSignatureType c : PDFSignatureType.values()) System.out.println(c);
public static PDFSignatureType 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 nullpublic String toString()
toString in class Enum<PDFSignatureType>Object.toString()Copyright © 1982–2023 Adobe Systems Incorporated. All rights reserved.