Uses of Class
org.apache.commons.net.ftp.FTPCmd
-
Packages that use FTPCmd Package Description org.apache.commons.net.ftp FTP and FTPS support classes -
-
Uses of FTPCmd in org.apache.commons.net.ftp
Fields in org.apache.commons.net.ftp declared as FTPCmd Modifier and Type Field Description static FTPCmd
FTPCmd. ABORT
Alias.static FTPCmd
FTPCmd. ACCOUNT
Alias.static FTPCmd
FTPCmd. ALLOCATE
Alias.static FTPCmd
FTPCmd. APPEND
Alias.static FTPCmd
FTPCmd. CHANGE_TO_PARENT_DIRECTORY
Alias.static FTPCmd
FTPCmd. CHANGE_WORKING_DIRECTORY
Alias.static FTPCmd
FTPCmd. DATA_PORT
Alias.static FTPCmd
FTPCmd. DELETE
Alias.static FTPCmd
FTPCmd. FEATURES
Alias.static FTPCmd
FTPCmd. FILE_STRUCTURE
Alias.static FTPCmd
FTPCmd. GET_MOD_TIME
Alias.static FTPCmd
FTPCmd. LOGOUT
Alias.static FTPCmd
FTPCmd. MAKE_DIRECTORY
Alias.static FTPCmd
FTPCmd. MOD_TIME
Alias.static FTPCmd
FTPCmd. NAME_LIST
Alias.static FTPCmd
FTPCmd. PASSIVE
Alias.static FTPCmd
FTPCmd. PASSWORD
Alias.static FTPCmd
FTPCmd. PRINT_WORKING_DIRECTORY
Alias.static FTPCmd
FTPCmd. REINITIALIZE
Alias.static FTPCmd
FTPCmd. REMOVE_DIRECTORY
Alias.static FTPCmd
FTPCmd. RENAME_FROM
Alias.static FTPCmd
FTPCmd. RENAME_TO
Alias.static FTPCmd
FTPCmd. REPRESENTATION_TYPE
Alias.static FTPCmd
FTPCmd. RESTART
Alias.static FTPCmd
FTPCmd. RETRIEVE
Alias.static FTPCmd
FTPCmd. SET_MOD_TIME
Alias.static FTPCmd
FTPCmd. SITE_PARAMETERS
Alias.static FTPCmd
FTPCmd. STATUS
Alias.static FTPCmd
FTPCmd. STORE
Alias.static FTPCmd
FTPCmd. STORE_UNIQUE
Alias.static FTPCmd
FTPCmd. STRUCTURE_MOUNT
Alias.static FTPCmd
FTPCmd. SYSTEM
Alias.static FTPCmd
FTPCmd. TRANSFER_MODE
Alias.static FTPCmd
FTPCmd. USERNAME
Alias.Methods in org.apache.commons.net.ftp that return FTPCmd Modifier and Type Method Description static FTPCmd
FTPCmd. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FTPCmd[]
FTPCmd. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.commons.net.ftp with parameters of type FTPCmd Modifier and Type Method Description protected java.net.Socket
FTPClient. _openDataConnection_(FTPCmd command, java.lang.String arg)
Establishes a data connection with the FTP server, returning a Socket for the connection if successful.boolean
FTPClient. hasFeature(FTPCmd feature)
Queries the server for a supported feature.int
FTP. sendCommand(FTPCmd command)
Sends an FTP command to the server, waits for a reply and returns the numerical response code.int
FTP. sendCommand(FTPCmd command, java.lang.String args)
Sends an FTP command to the server, waits for a reply and returns the numerical response code.private boolean
FTPClient. storeFile(FTPCmd command, java.lang.String remote, java.io.InputStream local)
private java.io.OutputStream
FTPClient. storeFileStream(FTPCmd command, java.lang.String remote)
-