public enum ExportDisplay extends java.lang.Enum<ExportDisplay> implements ValueEnum
| Enum Constant and Description |
|---|
DOWNLOAD Show the Save As dialog and download the file |
RETURN Return the data for further programmatic processing in the browser |
WINDOW Show the data in a new browser window |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() |
static ExportDisplay | valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static ExportDisplay[] | values() Returns an array containing the constants of this enum type, in the order they are declared. |
public static final ExportDisplay DOWNLOAD
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "download".
public static final ExportDisplay WINDOW
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "window".
public static final ExportDisplay RETURN
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "return".
public static ExportDisplay[] values()
for (ExportDisplay c : ExportDisplay.values()) System.out.println(c);
public static ExportDisplay 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