public static enum S3.S3OutputFormat extends Enum<S3.S3OutputFormat>
| Enum Constant and Description |
|---|
JSON_ARRAY
The payload is a full JSON document, but just has an array of interactions.
|
JSON_META
The current default format, where each payload contains a full JSON document.
|
JSON_NEW_LINE
The payload is NOT a full JSON document.
|
| Modifier and Type | Method and Description |
|---|---|
static S3.S3OutputFormat |
fromStr(String str) |
static S3.S3OutputFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static S3.S3OutputFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final S3.S3OutputFormat JSON_META
public static final S3.S3OutputFormat JSON_ARRAY
public static final S3.S3OutputFormat JSON_NEW_LINE
public static S3.S3OutputFormat[] values()
for (S3.S3OutputFormat c : S3.S3OutputFormat.values()) System.out.println(c);
public static S3.S3OutputFormat 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 static S3.S3OutputFormat fromStr(String str)
Copyright © 2015. All Rights Reserved.