public static enum ExportFormat.Source extends 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(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(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 nullCopyright © 2012. All Rights Reserved.