public static enum NodeManager.ConnectionType extends Enum<NodeManager.ConnectionType>
| Modifier and Type | Method and Description |
|---|---|
static NodeManager.ConnectionType |
fromValue(String value) |
static NodeManager.ConnectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeManager.ConnectionType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final NodeManager.ConnectionType PLAIN
public static final NodeManager.ConnectionType SSL
public static final NodeManager.ConnectionType SSH
public static final NodeManager.ConnectionType RSH
public static NodeManager.ConnectionType[] values()
for (NodeManager.ConnectionType c : NodeManager.ConnectionType.values())
System.out.println(c);
public static NodeManager.ConnectionType 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 nullpublic static NodeManager.ConnectionType fromValue(String value)