| Enum Constant and Description |
|---|
FORCE_SIMPLEX
Force simplex printing
|
OFF
Use system printer preferences duplex setting
|
TUMBLE_LONG
Tumble over long edge
|
TUMBLE_SHORT
Tumble over short edge
|
| Modifier and Type | Method and Description |
|---|---|
static Duplex |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Duplex[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Duplex OFF
public static final Duplex TUMBLE_SHORT
public static final Duplex TUMBLE_LONG
public static final Duplex FORCE_SIMPLEX
public static Duplex[] values()
for (Duplex c : Duplex.values()) System.out.println(c);
public static Duplex 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