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