public enum PDFPageMode extends Enum<PDFPageMode>
| Enum Constant and Description |
|---|
FULLSCREEN
Constant to display document in fullscreen mode.
|
USEATTACHMENTS
Constant to display Attachments panel.
|
USENONE
Constant to prevent display of document outline and thumbnail images.
|
USEOC
Constant to display option content group panel.
|
USEOUTLINES
Constant to display document outline.
|
USETHUMBS
Constant to display thumnail images.
|
| Modifier and Type | Method and Description |
|---|---|
static PDFPageMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PDFPageMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PDFPageMode USENONE
public static final PDFPageMode USEOUTLINES
public static final PDFPageMode USETHUMBS
public static final PDFPageMode FULLSCREEN
public static final PDFPageMode USEOC
public static final PDFPageMode USEATTACHMENTS
public static PDFPageMode[] values()
for (PDFPageMode c : PDFPageMode.values()) System.out.println(c);
public static PDFPageMode 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 null