public static enum BridgeDescription.FailMode extends java.lang.Enum<BridgeDescription.FailMode>
Enum Constant and Description |
---|
SECURE
The bridge will not set up flows on its own when the controller
connection fails or no controllers are defined.
|
STANDALONE
The bridge will take over responsibility of setting up flows.
|
Modifier and Type | Method and Description |
---|---|
static BridgeDescription.FailMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BridgeDescription.FailMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BridgeDescription.FailMode SECURE
public static final BridgeDescription.FailMode STANDALONE
public static BridgeDescription.FailMode[] values()
for (BridgeDescription.FailMode c : BridgeDescription.FailMode.values()) System.out.println(c);
public static BridgeDescription.FailMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null