public enum ConnectionType extends java.lang.Enum<ConnectionType>
| Enum Constant and Description |
|---|
INTERACTIVE_SUDO |
SCP |
SFTP |
SFTP_CYGWIN |
SFTP_WINSSHD |
SUDO |
TELNET |
TUNNEL |
WINRM_INTERNAL |
WINRM_NATIVE |
| Modifier and Type | Method and Description |
|---|---|
static ConnectionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConnectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectionType SFTP
public static final ConnectionType SFTP_CYGWIN
public static final ConnectionType SFTP_WINSSHD
public static final ConnectionType SCP
public static final ConnectionType SUDO
public static final ConnectionType INTERACTIVE_SUDO
public static final ConnectionType TUNNEL
public static final ConnectionType TELNET
public static final ConnectionType WINRM_INTERNAL
public static final ConnectionType WINRM_NATIVE
public static ConnectionType[] values()
for (ConnectionType c : ConnectionType.values()) System.out.println(c);
public static ConnectionType 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