public enum ArrayWrapping extends Enum<ArrayWrapping>
Enum Constant and Description |
---|
NO_WRAPPING |
USE_PROPERTY_AS_WRAPPER |
USE_PROPERTY_FOR_ELEMENTS |
Modifier and Type | Method and Description |
---|---|
static ArrayWrapping |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArrayWrapping[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrayWrapping USE_PROPERTY_AS_WRAPPER
public static final ArrayWrapping USE_PROPERTY_FOR_ELEMENTS
public static final ArrayWrapping NO_WRAPPING
public static ArrayWrapping[] values()
for (ArrayWrapping c : ArrayWrapping.values()) System.out.println(c);
public static ArrayWrapping 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 Apache NiFi Project. All rights reserved.