public static enum DataRequest.DownloadType extends Enum<DataRequest.DownloadType>
| Enum Constant and Description |
|---|
DOWNLOAD_TYPE_CSV |
DOWNLOAD_TYPE_XLSX |
| Modifier and Type | Method and Description |
|---|---|
static DataRequest.DownloadType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataRequest.DownloadType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataRequest.DownloadType DOWNLOAD_TYPE_CSV
public static final DataRequest.DownloadType DOWNLOAD_TYPE_XLSX
public static DataRequest.DownloadType[] values()
for (DataRequest.DownloadType c : DataRequest.DownloadType.values()) System.out.println(c);
public static DataRequest.DownloadType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All Rights Reserved.