public enum FlowFilePolicy extends Enum<FlowFilePolicy>
| Enum Constant and Description |
|---|
USE_CLONE
When multiple rules match, they will be executed against a clone of the
original flow file.
|
USE_ORIGINAL
When multiple rules match, they will all be executed against the original
flow file.
|
| Modifier and Type | Method and Description |
|---|---|
static FlowFilePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowFilePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowFilePolicy USE_CLONE
public static final FlowFilePolicy USE_ORIGINAL
public static FlowFilePolicy[] values()
for (FlowFilePolicy c : FlowFilePolicy.values()) System.out.println(c);
public static FlowFilePolicy 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 © 2016 Apache NiFi Project. All rights reserved.