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