public enum ExportMode extends Enum<ExportMode>
Enum Constant and Description |
---|
Batch
Batch export mode.
|
Multipage
Multipage export mode.
|
SinglePage
Single page export mode.
|
Modifier and Type | Method and Description |
---|---|
static ExportMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExportMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExportMode SinglePage
public static final ExportMode Batch
public static final ExportMode Multipage
public static ExportMode[] values()
for (ExportMode c : ExportMode.values()) System.out.println(c);
public static ExportMode 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