public static enum APIConstants.ExportOption extends java.lang.Enum<APIConstants.ExportOption>
Enum Constant and Description |
---|
EXPORT_ALL
EXPORT_ALL - Refers to Exporting to individual Excel Files.
|
EXPORT_INTO_MULTIPLE_SHEET
EXPORT_INTO_MULTIPLE_SHEET - Refers to Exporting to single workbook
with multiple ExcelSheets.
|
EXPORT_INTO_SINGLE_SHEET
EXPORT_INTO_SINGLE_SHEET - Refers to Exporting to a single Excel
Sheet.
|
Modifier and Type | Method and Description |
---|---|
static APIConstants.ExportOption |
getExportOption(java.lang.String value)
Returns the ExportOption.
|
java.lang.String |
toString() |
static APIConstants.ExportOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static APIConstants.ExportOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final APIConstants.ExportOption EXPORT_INTO_MULTIPLE_SHEET
public static final APIConstants.ExportOption EXPORT_ALL
public static final APIConstants.ExportOption EXPORT_INTO_SINGLE_SHEET
public static APIConstants.ExportOption[] values()
for (APIConstants.ExportOption c : APIConstants.ExportOption.values()) System.out.println(c);
public static APIConstants.ExportOption 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 nullpublic static APIConstants.ExportOption getExportOption(java.lang.String value)
value
- Stringpublic java.lang.String toString()
toString
in class java.lang.Enum<APIConstants.ExportOption>