|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<ExportFormat>
com.smartgwt.client.types.ExportFormat
public enum ExportFormat
One of the supported formats for data-export. If you are doing a client export to one of the native spreadsheet formats
(xls or ooxml), we also export hilite-based coloring. So, if Hilites are
causing a particular cell to be rendered as green text on a blue background, the corresponding cell in the exported
spreadsheet document will also be colored that way.
| Enum Constant Summary | |
|---|---|
CSV
Export data in comma-separated format |
|
JSON
Export data as JSON objects |
|
OOXML
Export data in native Microsoft Excel 2007 format (also called XLSX) |
|
XLS
Export data in native Microsoft Excel 97 format |
|
XML
Export data as XML records |
|
| Method Summary | |
|---|---|
java.lang.String |
getValue()
|
static ExportFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ExportFormat[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ExportFormat XML
public static final ExportFormat JSON
public static final ExportFormat CSV
public static final ExportFormat XLS
public static final ExportFormat OOXML
| Method Detail |
|---|
public static ExportFormat[] values()
for (ExportFormat c : ExportFormat.values()) System.out.println(c);
public static ExportFormat 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 name
java.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()
getValue in interface ValueEnum
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||