public static enum ImportFormat.Target extends java.lang.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(java.lang.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(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