public enum PrintDuplexMode extends java.lang.Enum<PrintDuplexMode>
| Enum Constant and Description |
|---|
FLIP_ON_LONG_EDGE
flip On Long Edge
|
FLIP_ON_SHORT_EDGE
flip On Short Edge
|
ONE_SIDED
one Sided
|
UNEXPECTED_VALUE
For PrintDuplexMode values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
| Modifier and Type | Method and Description |
|---|---|
static PrintDuplexMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrintDuplexMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrintDuplexMode FLIP_ON_LONG_EDGE
public static final PrintDuplexMode FLIP_ON_SHORT_EDGE
public static final PrintDuplexMode ONE_SIDED
public static final PrintDuplexMode UNKNOWN_FUTURE_VALUE
public static final PrintDuplexMode UNEXPECTED_VALUE
public static PrintDuplexMode[] values()
for (PrintDuplexMode c : PrintDuplexMode.values()) System.out.println(c);
public static PrintDuplexMode 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