public enum StructuredDataPolicy extends Enum<StructuredDataPolicy>
| Enum Constant and Description |
|---|
FLATTEN
The Structured Data will be flattened per the KeyProvider provided values.
|
MAP_OF_MAPS
The Structured Data will be returned as a Map field named structuredData.
|
| Modifier and Type | Method and Description |
|---|---|
static StructuredDataPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructuredDataPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructuredDataPolicy FLATTEN
public static final StructuredDataPolicy MAP_OF_MAPS
public static StructuredDataPolicy[] values()
for (StructuredDataPolicy c : StructuredDataPolicy.values()) System.out.println(c);
public static StructuredDataPolicy 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 © 2021 palindromicity. All rights reserved.