public enum PrintRotation extends java.lang.Enum<PrintRotation>
| Enum Constant and Description |
|---|
Rotate0 |
Rotate180 |
Rotate270 |
Rotate90 |
| Modifier and Type | Method and Description |
|---|---|
static PrintRotation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrintRotation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrintRotation Rotate0
public static final PrintRotation Rotate90
public static final PrintRotation Rotate180
public static final PrintRotation Rotate270
public static PrintRotation[] values()
for (PrintRotation c : PrintRotation.values()) System.out.println(c);
public static PrintRotation 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 null