Uses of Class
org.apache.commons.net.ftp.FTPFile

Packages that use FTPFile
org.apache.commons.net.ftp   
org.apache.commons.net.ftp.parser   
 

Uses of FTPFile in org.apache.commons.net.ftp
 

Fields in org.apache.commons.net.ftp declared as FTPFile
private static FTPFile[] FTPFileIterator.EMPTY
          Deprecated. shorthand for an empty return value.
 

Methods in org.apache.commons.net.ftp that return FTPFile
private  FTPFile FTPFileIterator.parseFTPEntry(java.lang.String entry)
          Deprecated. Delegates to this object's parser member the job of parsing an entry.
 FTPFile[] FTPFileIterator.getFiles()
          Deprecated. Returns a list of FTPFile objects for ALL files listed in the server's LIST output.
 FTPFile[] FTPFileIterator.getNext(int quantityRequested)
          Deprecated. Returns an array of at most quantityRequested FTPFile objects starting at this iterator's current position within its associated list.
 FTPFile FTPFileIterator.next()
          Deprecated. Returns a single parsed FTPFile object corresponding to the raw input line at this iterator's current position.
 FTPFile[] FTPFileIterator.getPrevious(int quantityRequested)
          Deprecated. Returns an array of at most quantityRequested FTPFile objects starting at the position preceding this iterator's current position within its associated list.
 FTPFile FTPFileIterator.previous()
          Deprecated. Returns a single parsed FTPFile object corresponding to the raw input line at the position preceding that of the internal iterator over the list of raw lines maintained by this object After this method is called the internal iterator is retreated by one element (unless it is already at beginning of list).
 FTPFile[] FTPFileList.getFiles()
          Deprecated. returns an array of FTPFile objects for all the files in the directory listing
 FTPFile[] FTPListParseEngine.getNext(int quantityRequested)
          Returns an array of at most quantityRequested FTPFile objects starting at this object's internal iterator's current position.
 FTPFile[] FTPListParseEngine.getPrevious(int quantityRequested)
          Returns an array of at most quantityRequested FTPFile objects starting at this object's internal iterator's current position, and working back toward the beginning.
 FTPFile[] FTPListParseEngine.getFiles()
          Returns an array of FTPFile objects containing the whole list of files returned by the server as read by this object's parser.
 FTPFile[] FTPClient.listFiles(java.lang.String parserKey, java.lang.String pathname)
          Using the supplied parserKey, obtain a list of file information for the current working directory or for just a single file.
 FTPFile[] FTPClient.listFiles(java.lang.String pathname)
          Using the default system autodetect mechanism, obtain a list of file information for the current working directory or for just a single file.
 FTPFile[] FTPClient.listFiles()
          Using the default system autodetect mechanism, obtain a list of file information for the current working directory.
 FTPFile[] FTPClient.listFiles(FTPFileListParser parser, java.lang.String pathname)
          Deprecated. use listFiles(String parserKey, String pathname) instead
 FTPFile[] FTPClient.listFiles(FTPFileListParser parser)
          Deprecated. use listFiles(String parserKey) instead.
 FTPFile[] FTPFileListParser.parseFileList(java.io.InputStream listStream)
          Deprecated. Parses an FTP server file listing and converts it into a usable format in the form of an array of FTPFile instances.
 FTPFile[] FTPFileEntryParserImpl.parseFileList(java.io.InputStream listStream)
          Parses an FTP server file listing and converts it into a usable format in the form of an array of FTPFile instances.
 FTPFile FTPFileEntryParser.parseFTPEntry(java.lang.String listEntry)
          Parses a line of an FTP server file listing and converts it into a usable format in the form of an FTPFile instance.
 

Uses of FTPFile in org.apache.commons.net.ftp.parser
 

Methods in org.apache.commons.net.ftp.parser that return FTPFile
 FTPFile UnixFTPEntryParser.parseFTPEntry(java.lang.String entry)
          Parses a line of a unix (standard) FTP server file listing and converts it into a usable format in the form of an FTPFile instance.
 FTPFile NTFTPEntryParser.parseFTPEntry(java.lang.String entry)
          Parses a line of an NT FTP server file listing and converts it into a usable format in the form of an FTPFile instance.
 FTPFile[] VMSFTPEntryParser.parseFileList(java.io.InputStream listStream)
          Parses an FTP server file listing and converts it into a usable format in the form of an array of FTPFile instances.
 FTPFile VMSFTPEntryParser.parseFTPEntry(java.lang.String entry)
          Parses a line of a VMS FTP server file listing and converts it into a usable format in the form of an FTPFile instance.
 FTPFile EnterpriseUnixFTPEntryParser.parseFTPEntry(java.lang.String entry)
          Parses a line of a unix FTP server file listing and converts it into a usable format in the form of an FTPFile instance.
 FTPFile CompositeFileEntryParser.parseFTPEntry(java.lang.String listEntry)
           
 FTPFile OS2FTPEntryParser.parseFTPEntry(java.lang.String entry)
          Parses a line of an OS2 FTP server file listing and converts it into a usable format in the form of an FTPFile instance.
 FTPFile OS400FTPEntryParser.parseFTPEntry(java.lang.String entry)