java.io.Serializable
, java.lang.Comparable<Orientation>
public enum Orientation extends java.lang.Enum<Orientation>
Enum Constant | Description |
---|---|
AUTO |
Automatically select the orientation of each page based on its aspect ratio.
|
LANDSCAPE |
Print all pages as landscape.
|
PORTRAIT |
Print all pages as portrait.
|
Modifier and Type | Method | Description |
---|---|---|
static Orientation |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Orientation[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Orientation AUTO
public static final Orientation LANDSCAPE
public static final Orientation PORTRAIT
public static Orientation[] values()
for (Orientation c : Orientation.values()) System.out.println(c);
public static Orientation 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 © 2002–2018. All rights reserved.