flux.file
Enum FtpSslEncryptionProtocol

java.lang.Object
  extended by java.lang.Enum<FtpSslEncryptionProtocol>
      extended by flux.file.FtpSslEncryptionProtocol
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FtpSslEncryptionProtocol>

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

Used in conjunction with FtpSslHost to indicate the encryption protocol used when communicating with an FTP-over-SSL (FTPS) host on a network.

Author:
Copyright 2014 Flux Corporation. All rights reserved.

Enum Constant Summary
IMPLICIT_SSL
          The Implicit SSL encryption protocol.
SSL
          The SSL encryption protocol.
TLS
          The TLS encryption protocol.
 
Method Summary
static FtpSslEncryptionProtocol valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FtpSslEncryptionProtocol[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TLS

public static final FtpSslEncryptionProtocol TLS
The TLS encryption protocol.


SSL

public static final FtpSslEncryptionProtocol SSL
The SSL encryption protocol.


IMPLICIT_SSL

public static final FtpSslEncryptionProtocol IMPLICIT_SSL
The Implicit SSL encryption protocol.

Method Detail

values

public static FtpSslEncryptionProtocol[] 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 (FtpSslEncryptionProtocol c : FtpSslEncryptionProtocol.values())
    System.out.println(c);

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

valueOf

public static FtpSslEncryptionProtocol 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


© 2014 Flux Corporation. All rights reserved.