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