public enum FilteringStrategy extends Enum<FilteringStrategy>
| Enum Constant and Description |
|---|
DISABLED
Filtering is disabled
|
EMPTY
Filtering is enabled for messages containing zero bytes
|
| Modifier and Type | Method and Description |
|---|---|
static FilteringStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilteringStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilteringStrategy DISABLED
public static final FilteringStrategy EMPTY
public static FilteringStrategy[] values()
for (FilteringStrategy c : FilteringStrategy.values()) System.out.println(c);
public static FilteringStrategy 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 © 2024 Apache NiFi Project. All rights reserved.