Enum Constant | Description |
---|---|
A3_PAPER |
|
A4_PAPER |
|
A4_SMALL_PAPER |
|
A5_PAPER |
|
B4_PAPER |
|
B5_PAPER |
|
EXECUTIVE_PAPER |
|
FOLIO_PAPER |
|
LEDGER_PAPER |
|
LEGAL_PAPER |
|
LETTER_PAPER |
|
LETTER_SMALL_PAPER |
|
QUARTO_PAPER |
|
STANDARD_PAPER_10_14 |
|
STANDARD_PAPER_11_17 |
|
STATEMENT_PAPER |
|
TABLOID_PAPER |
Modifier and Type | Method | Description |
---|---|---|
static PaperSize |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static PaperSize[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaperSize LETTER_PAPER
public static final PaperSize LETTER_SMALL_PAPER
public static final PaperSize TABLOID_PAPER
public static final PaperSize LEDGER_PAPER
public static final PaperSize LEGAL_PAPER
public static final PaperSize STATEMENT_PAPER
public static final PaperSize EXECUTIVE_PAPER
public static final PaperSize A3_PAPER
public static final PaperSize A4_PAPER
public static final PaperSize A4_SMALL_PAPER
public static final PaperSize A5_PAPER
public static final PaperSize B4_PAPER
public static final PaperSize B5_PAPER
public static final PaperSize FOLIO_PAPER
public static final PaperSize QUARTO_PAPER
public static final PaperSize STANDARD_PAPER_10_14
public static final PaperSize STANDARD_PAPER_11_17
public static PaperSize[] values()
for (PaperSize c : PaperSize.values()) System.out.println(c);
public static PaperSize 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 2018 The Apache Software Foundation or its licensors, as applicable.