com.xebialabs.deployit.plugin.overthere
Enum LegacyCifsConnectionType

java.lang.Object
  extended by java.lang.Enum<LegacyCifsConnectionType>
      extended by com.xebialabs.deployit.plugin.overthere.LegacyCifsConnectionType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LegacyCifsConnectionType>

public enum LegacyCifsConnectionType
extends java.lang.Enum<LegacyCifsConnectionType>


Enum Constant Summary
TELNET
           
WINRM
           
WINRM_HTTP
           
WINRM_HTTPS
           
 
Method Summary
static LegacyCifsConnectionType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LegacyCifsConnectionType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TELNET

public static final LegacyCifsConnectionType TELNET

WINRM

public static final LegacyCifsConnectionType WINRM

WINRM_HTTP

public static final LegacyCifsConnectionType WINRM_HTTP

WINRM_HTTPS

public static final LegacyCifsConnectionType WINRM_HTTPS
Method Detail

values

public static LegacyCifsConnectionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (LegacyCifsConnectionType c : LegacyCifsConnectionType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static LegacyCifsConnectionType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null