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