public enum TablePayloadFormat extends Enum<TablePayloadFormat>
Enum Constant and Description |
---|
Json
Use JSON with minimal metadata.
|
JsonFullMetadata
Use JSON with full metadata.
|
JsonNoMetadata
Use JSON with no metadata.
|
Modifier and Type | Method and Description |
---|---|
static TablePayloadFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TablePayloadFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TablePayloadFormat JsonFullMetadata
public static final TablePayloadFormat Json
public static final TablePayloadFormat JsonNoMetadata
public static TablePayloadFormat[] values()
for (TablePayloadFormat c : TablePayloadFormat.values()) System.out.println(c);
public static TablePayloadFormat 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 © 2019. All rights reserved.