public enum ExportFileFormat extends Enum<ExportFileFormat>
Enum Constant and Description |
---|
AVRO
Avro container files
|
CSV
Comma separated value exports
|
LINE_DELIMITED_JSON
Newline delimited JSON
|
Modifier and Type | Method and Description |
---|---|
String |
getFilePattern()
Get the file pattern to use when exporting
|
String |
getFormatIdentifier()
Get the identifier to specify in API requests
|
static ExportFileFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExportFileFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExportFileFormat CSV
public static final ExportFileFormat LINE_DELIMITED_JSON
public static final ExportFileFormat AVRO
public static ExportFileFormat[] values()
for (ExportFileFormat c : ExportFileFormat.values()) System.out.println(c);
public static ExportFileFormat 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 getFilePattern()
public String getFormatIdentifier()
Copyright © 2020. All rights reserved.