Package com.itextpdf.signatures
Enum PdfSignatureAppearance.RenderingMode
java.lang.Object
java.lang.Enum<PdfSignatureAppearance.RenderingMode>
com.itextpdf.signatures.PdfSignatureAppearance.RenderingMode
- All Implemented Interfaces:
-
Serializable
,Comparable<PdfSignatureAppearance.RenderingMode>
,java.lang.constant.Constable
- Enclosing class:
- PdfSignatureAppearance
public static enum PdfSignatureAppearance.RenderingMode extends Enum<PdfSignatureAppearance.RenderingMode>
Signature rendering modes.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe rendering mode is just the description.The rendering mode is just an image.The rendering mode is an image and the description.The rendering mode is the name of the signer and the description. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static PdfSignatureAppearance.RenderingMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DESCRIPTION
The rendering mode is just the description. -
NAME_AND_DESCRIPTION
The rendering mode is the name of the signer and the description. -
GRAPHIC_AND_DESCRIPTION
The rendering mode is an image and the description. -
GRAPHIC
The rendering mode is just an image.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 name -
NullPointerException
- if the argument is null
-