public enum RemoteConnectionType extends java.lang.Enum<RemoteConnectionType>
Enum Constant and Description |
---|
CURRENT_VAGRANT
Current project vagrant
|
DEFAULT_SDK
Currently selected SDK (e.g.
|
DEPLOYMENT_SERVER
Web deployment server
|
NONE
No source is predefined - it would be asked on request
|
REMOTE_SDK
Remote SDK
|
SSH_CONFIG
Ssh config
|
Modifier and Type | Method and Description |
---|---|
static RemoteConnectionType |
findByName(java.lang.String name) |
static RemoteConnectionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RemoteConnectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoteConnectionType DEFAULT_SDK
public static final RemoteConnectionType DEPLOYMENT_SERVER
public static final RemoteConnectionType SSH_CONFIG
public static final RemoteConnectionType REMOTE_SDK
public static final RemoteConnectionType CURRENT_VAGRANT
public static final RemoteConnectionType NONE
public static RemoteConnectionType[] values()
for (RemoteConnectionType c : RemoteConnectionType.values()) System.out.println(c);
public static RemoteConnectionType 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 nullpublic static RemoteConnectionType findByName(java.lang.String name)