Package com.itextpdf.text.pdf
Enum Class PdfSignatureAppearance.RenderingMode
java.lang.Object
java.lang.Enum<PdfSignatureAppearance.RenderingMode>
com.itextpdf.text.pdf.PdfSignatureAppearance.RenderingMode
- All Implemented Interfaces:
Serializable
,Comparable<PdfSignatureAppearance.RenderingMode>
,Constable
- Enclosing class:
PdfSignatureAppearance
public static enum PdfSignatureAppearance.RenderingMode
extends Enum<PdfSignatureAppearance.RenderingMode>
Signature rendering modes
- Since:
- 5.0.1
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum 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. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static PdfSignatureAppearance.RenderingMode[]
values()
Returns an array containing the constants of this enum class, 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.
-
-
Constructor Details
-
RenderingMode
private RenderingMode()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-