Package net.snowflake.client.jdbc
Enum SFBaseFileTransferAgent.CommandType
- java.lang.Object
-
- java.lang.Enum<SFBaseFileTransferAgent.CommandType>
-
- net.snowflake.client.jdbc.SFBaseFileTransferAgent.CommandType
-
- All Implemented Interfaces:
Serializable,Comparable<SFBaseFileTransferAgent.CommandType>
- Enclosing class:
- SFBaseFileTransferAgent
public static enum SFBaseFileTransferAgent.CommandType extends Enum<SFBaseFileTransferAgent.CommandType>
The types of file transfer: upload and download.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SFBaseFileTransferAgent.CommandTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SFBaseFileTransferAgent.CommandType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UPLOAD
public static final SFBaseFileTransferAgent.CommandType UPLOAD
-
DOWNLOAD
public static final SFBaseFileTransferAgent.CommandType DOWNLOAD
-
-
Method Detail
-
values
public static SFBaseFileTransferAgent.CommandType[] 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 (SFBaseFileTransferAgent.CommandType c : SFBaseFileTransferAgent.CommandType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SFBaseFileTransferAgent.CommandType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-