public enum PadesPaperSize extends java.lang.Enum<PadesPaperSize>
Enum Constant and Description |
---|
A0 |
A1 |
A2 |
A3 |
A4 |
A5 |
A6 |
A7 |
A8 |
Custom |
Ledger |
Legal |
Letter |
Modifier and Type | Method and Description |
---|---|
static PadesPaperSize |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PadesPaperSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PadesPaperSize Custom
public static final PadesPaperSize A0
public static final PadesPaperSize A1
public static final PadesPaperSize A2
public static final PadesPaperSize A3
public static final PadesPaperSize A4
public static final PadesPaperSize A5
public static final PadesPaperSize A6
public static final PadesPaperSize A7
public static final PadesPaperSize A8
public static final PadesPaperSize Letter
public static final PadesPaperSize Legal
public static final PadesPaperSize Ledger
public static PadesPaperSize[] values()
for (PadesPaperSize c : PadesPaperSize.values()) System.out.println(c);
public static PadesPaperSize 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 null