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