public static enum ReactorNode.State extends Enum<ReactorNode.State>
Enum Constant and Description |
---|
FAILED |
FINISHED |
SUCCESS |
UNFINISHED |
Modifier and Type | Method and Description |
---|---|
static ReactorNode.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReactorNode.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReactorNode.State FAILED
public static final ReactorNode.State SUCCESS
public static final ReactorNode.State FINISHED
public static final ReactorNode.State UNFINISHED
public static ReactorNode.State[] values()
for (ReactorNode.State c : ReactorNode.State.values()) System.out.println(c);
public static ReactorNode.State 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 © 2004–2020 Ideaconsult Ltd.. All rights reserved.