java.io.Serializable
, java.lang.Comparable<PdfSignatureAppearance.RenderingMode>
public static enum PdfSignatureAppearance.RenderingMode extends java.lang.Enum<PdfSignatureAppearance.RenderingMode>
Enum Constant | Description |
---|---|
DESCRIPTION |
The rendering mode is just the description.
|
GRAPHIC |
The rendering mode is just an image.
|
GRAPHIC_AND_DESCRIPTION |
The rendering mode is an image and the description.
|
NAME_AND_DESCRIPTION |
The rendering mode is the name of the signer and the description.
|
Modifier and Type | Method | Description |
---|---|---|
static PdfSignatureAppearance.RenderingMode |
valueOf(java.lang.String name) |
Returns 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.
|
public static final PdfSignatureAppearance.RenderingMode DESCRIPTION
public static final PdfSignatureAppearance.RenderingMode NAME_AND_DESCRIPTION
public static final PdfSignatureAppearance.RenderingMode GRAPHIC_AND_DESCRIPTION
public static final PdfSignatureAppearance.RenderingMode GRAPHIC
public static PdfSignatureAppearance.RenderingMode[] values()
for (PdfSignatureAppearance.RenderingMode c : PdfSignatureAppearance.RenderingMode.values()) System.out.println(c);
public static PdfSignatureAppearance.RenderingMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 1998–2018. All rights reserved.