public static enum EmbosserProperties.PrintMode extends Enum<EmbosserProperties.PrintMode>
| Enum Constant and Description |
|---|
MAGAZINE
Two print pages per input page
|
REGULAR
One print page per input page
|
| Modifier and Type | Method and Description |
|---|---|
static EmbosserProperties.PrintMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmbosserProperties.PrintMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmbosserProperties.PrintMode REGULAR
public static final EmbosserProperties.PrintMode MAGAZINE
public static EmbosserProperties.PrintMode[] values()
for (EmbosserProperties.PrintMode c : EmbosserProperties.PrintMode.values()) System.out.println(c);
public static EmbosserProperties.PrintMode 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