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