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