public static enum ConfigVerificationResult.Outcome extends Enum<ConfigVerificationResult.Outcome>
Enum Constant and Description |
---|
FAILED |
SKIPPED |
SUCCESSFUL |
Modifier and Type | Method and Description |
---|---|
static ConfigVerificationResult.Outcome |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigVerificationResult.Outcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigVerificationResult.Outcome SUCCESSFUL
public static final ConfigVerificationResult.Outcome FAILED
public static final ConfigVerificationResult.Outcome SKIPPED
public static ConfigVerificationResult.Outcome[] values()
for (ConfigVerificationResult.Outcome c : ConfigVerificationResult.Outcome.values()) System.out.println(c);
public static ConfigVerificationResult.Outcome 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.