public enum PageSizePaper extends Enum<PageSizePaper>
| Modifier and Type | Method and Description |
|---|---|
String |
value() |
static PageSizePaper |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageSizePaper[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageSizePaper LETTER
public static final PageSizePaper LEGAL
public static final PageSizePaper A3
public static final PageSizePaper A4
public static final PageSizePaper A5
public static final PageSizePaper B4JIS
public static PageSizePaper[] values()
for (PageSizePaper c : PageSizePaper.values()) System.out.println(c);
public static PageSizePaper valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
Copyright © 2007-2020. All Rights Reserved.