Uses of Interface
org.apache.commons.net.ftp.FTPFileEntryParser

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

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

Classes in org.apache.commons.net.ftp that implement FTPFileEntryParser
 class FTPFileListParserImpl
          This abstract class implements both the older FTPFileListParser and newer FTPFileEntryParser interfaces with default functionality.
 

Fields in org.apache.commons.net.ftp declared as FTPFileEntryParser
private  FTPFileEntryParser FTPFileIterator.parser
          the parser to which this iterator delegates its parsing duties
private  FTPFileEntryParser FTPFileList.parser
          the FTPFileEntryParser assigned to be used with this lister
 

Methods in org.apache.commons.net.ftp that return FTPFileEntryParser
(package private)  FTPFileEntryParser FTPFileList.getParser()
          Accessor for this object's default parser.
 

Methods in org.apache.commons.net.ftp with parameters of type FTPFileEntryParser
static FTPFileList FTPFileList.create(java.io.InputStream stream, FTPFileEntryParser parser)
          The only way to create an FTPFileList object.
 FTPFileIterator FTPFileList.iterator(FTPFileEntryParser parser)
          create an iterator over this list using the supplied parser
 FTPFileList FTPClient.createFileList(FTPFileEntryParser parser)
          Using a programmer specified FTPFileEntryParser , initialize an object containing a raw file information for the current working directory.
 FTPFileList FTPClient.createFileList(java.lang.String pathname, FTPFileEntryParser parser)
          Using a programmer specified FTPFileEntryParser , initialize an object containing a raw file information for a directory or information for a single file.
 

Constructors in org.apache.commons.net.ftp with parameters of type FTPFileEntryParser
FTPFileIterator(FTPFileList rawlist, FTPFileEntryParser parser)
          "Package-private" constructor.
FTPFileList(FTPFileEntryParser parser)
          The only constructor for FTPFileList, private because construction only invoked at createFTPFileList()
 

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

Classes in org.apache.commons.net.ftp.parser that implement FTPFileEntryParser
 class EnterpriseUnixFTPEntryParser
          Parser for the Connect Enterprise Unix FTP Server From Sterling Commerce.
 class NTFTPEntryParser
          This Class uses the ListParser class to validate the input string.
 class OS2FTPEntryParser
          This Class uses the ListParser class to validate the input string.
 class UnixFTPEntryParser
          This class is based on the logic of Daniel Savarese's DefaultFTPListParser, but adapted to use regular expressions and to fit the new FTPFileEntryParser interface.
 class VMSFTPEntryParser
          This Class uses the FTPEntryParser class to validate the input string.