public enum NilHandlingPolicy extends Enum<NilHandlingPolicy>
| Enum Constant and Description |
|---|
DASH
a nil value will result in a '-' symbol in the map.
|
NULL
a nil value will result in a null value in the map.
|
OMIT
a nil value will result msg part being omitted from the map.
|
| Modifier and Type | Method and Description |
|---|---|
static NilHandlingPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NilHandlingPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NilHandlingPolicy OMIT
public static final NilHandlingPolicy NULL
public static final NilHandlingPolicy DASH
public static NilHandlingPolicy[] values()
for (NilHandlingPolicy c : NilHandlingPolicy.values()) System.out.println(c);
public static NilHandlingPolicy 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.