public enum PageLengthEnum extends java.lang.Enum<PageLengthEnum>
Enum Constant and Description |
---|
INCH_11 |
INCH_11_divided_by_3 |
INCH_12 |
INCH_14 |
INCH_3 |
INCH_3_5 |
INCH_4 |
INCH_5 |
INCH_5_5 |
INCH_6 |
INCH_7 |
INCH_A4_11_6 |
Modifier and Type | Method and Description |
---|---|
int |
value() |
static PageLengthEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PageLengthEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageLengthEnum INCH_3
public static final PageLengthEnum INCH_11_divided_by_3
public static final PageLengthEnum INCH_3_5
public static final PageLengthEnum INCH_4
public static final PageLengthEnum INCH_5
public static final PageLengthEnum INCH_5_5
public static final PageLengthEnum INCH_6
public static final PageLengthEnum INCH_7
public static final PageLengthEnum INCH_11
public static final PageLengthEnum INCH_A4_11_6
public static final PageLengthEnum INCH_12
public static final PageLengthEnum INCH_14
public static PageLengthEnum[] values()
for (PageLengthEnum c : PageLengthEnum.values()) System.out.println(c);
public static PageLengthEnum 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 nullpublic int value()