public enum AnalyticsS3ExportFileFormat extends Enum<AnalyticsS3ExportFileFormat> implements Serializable
| Enum Constant and Description | 
|---|
CSV  | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
toString()  | 
static AnalyticsS3ExportFileFormat | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static AnalyticsS3ExportFileFormat[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final AnalyticsS3ExportFileFormat CSV
public static AnalyticsS3ExportFileFormat[] values()
for (AnalyticsS3ExportFileFormat c : AnalyticsS3ExportFileFormat.values()) System.out.println(c);
public static AnalyticsS3ExportFileFormat 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 nullpublic String toString()
toString in class Enum<AnalyticsS3ExportFileFormat>