public enum SaveFileFormat extends java.lang.Enum<SaveFileFormat>
| Enum Constant and Description |
|---|
Csv
Represents a csv file.
|
Html
Represents a html file.
|
Pdf
Represents a pdf file.
|
Xlsm
Represents a xlsm file.
|
Xlsx
Represents an xlsx file.
|
| Modifier and Type | Method and Description |
|---|---|
static SaveFileFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SaveFileFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SaveFileFormat Xlsx
public static final SaveFileFormat Csv
public static final SaveFileFormat Pdf
public static final SaveFileFormat Xlsm
public static final SaveFileFormat Html
public static SaveFileFormat[] values()
for (SaveFileFormat c : SaveFileFormat.values()) System.out.println(c);
public static SaveFileFormat 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