Package eu.europa.esig.dss.pades
Enum SignatureImageParameters.VisualSignatureAlignmentHorizontal
- java.lang.Object
-
- java.lang.Enum<SignatureImageParameters.VisualSignatureAlignmentHorizontal>
-
- eu.europa.esig.dss.pades.SignatureImageParameters.VisualSignatureAlignmentHorizontal
-
- All Implemented Interfaces:
Serializable,Comparable<SignatureImageParameters.VisualSignatureAlignmentHorizontal>
- Enclosing class:
- SignatureImageParameters
public static enum SignatureImageParameters.VisualSignatureAlignmentHorizontal extends Enum<SignatureImageParameters.VisualSignatureAlignmentHorizontal>
Visual signature horizontal position on the pdf page
-
-
Method Summary
Modifier and Type Method Description static SignatureImageParameters.VisualSignatureAlignmentHorizontalvalueOf(String name)Returns the enum constant of this type with the specified name.static SignatureImageParameters.VisualSignatureAlignmentHorizontal[]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.VisualSignatureAlignmentHorizontal NONE
default, x axis is the x coordinate
-
LEFT
public static final SignatureImageParameters.VisualSignatureAlignmentHorizontal LEFT
x axis is left padding
-
CENTER
public static final SignatureImageParameters.VisualSignatureAlignmentHorizontal CENTER
x axis automatically calculated
-
RIGHT
public static final SignatureImageParameters.VisualSignatureAlignmentHorizontal RIGHT
x axis is right padding
-
-
Method Detail
-
values
public static SignatureImageParameters.VisualSignatureAlignmentHorizontal[] 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.VisualSignatureAlignmentHorizontal 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
-
-