public static enum S3.S3OutputFormat extends java.lang.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(java.lang.String str) |
static S3.S3OutputFormat |
valueOf(java.lang.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(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 nullpublic static S3.S3OutputFormat fromStr(java.lang.String str)
Copyright © 2017. All Rights Reserved.