public static enum ExportFormat.Source extends java.lang.Enum<ExportFormat.Source>
| Enum Constant and Description |
|---|
DOCUMENT
Document export format.
|
DRAWING
Drawing export format.
|
PRESENTATION
Presentation export format.
|
SPREADSHEET
Spreadsheet export format.
|
| Modifier and Type | Method and Description |
|---|---|
static ExportFormat.Source |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExportFormat.Source[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExportFormat.Source DOCUMENT
public static final ExportFormat.Source DRAWING
public static final ExportFormat.Source PRESENTATION
public static final ExportFormat.Source SPREADSHEET
public static ExportFormat.Source[] values()
for (ExportFormat.Source c : ExportFormat.Source.values()) System.out.println(c);
public static ExportFormat.Source 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