Package eu.europa.esig.dss.pades
Enum SignatureImageParameters.VisualSignatureAlignmentVertical
- java.lang.Object
-
- java.lang.Enum<SignatureImageParameters.VisualSignatureAlignmentVertical>
-
- eu.europa.esig.dss.pades.SignatureImageParameters.VisualSignatureAlignmentVertical
-
- All Implemented Interfaces:
Serializable,Comparable<SignatureImageParameters.VisualSignatureAlignmentVertical>
- Enclosing class:
- SignatureImageParameters
public static enum SignatureImageParameters.VisualSignatureAlignmentVertical extends Enum<SignatureImageParameters.VisualSignatureAlignmentVertical>
Visual signature vertical position on the pdf page
-
-
Method Summary
Modifier and Type Method Description static SignatureImageParameters.VisualSignatureAlignmentVerticalvalueOf(String name)Returns the enum constant of this type with the specified name.static SignatureImageParameters.VisualSignatureAlignmentVertical[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final SignatureImageParameters.VisualSignatureAlignmentVertical NONE
default, y axis is the y coordinate
-
TOP
public static final SignatureImageParameters.VisualSignatureAlignmentVertical TOP
y axis is the top padding
-
MIDDLE
public static final SignatureImageParameters.VisualSignatureAlignmentVertical MIDDLE
y axis automatically calculated
-
BOTTOM
public static final SignatureImageParameters.VisualSignatureAlignmentVertical BOTTOM
y axis is the bottom padding
-
-
Method Detail
-
values
public static SignatureImageParameters.VisualSignatureAlignmentVertical[] 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
public static SignatureImageParameters.VisualSignatureAlignmentVertical valueOf(String name)
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 nameNullPointerException- if the argument is null
-
-