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 DefaultFTPFileListParser
          Deprecated. This class is deprecated as of version 1.2 and will be removed in version 2.0 -- use the autodetect mechanism in DefaultFTPFileEntryParserFactory instead.
 class FTPFileEntryParserImpl
          This abstract class implements both the older FTPFileListParser and newer FTPFileEntryParser interfaces with default functionality.
 class FTPFileListParserImpl
          Deprecated. This class is deprecated as of version 1.2 and will be removed in version 2.0 -- org.apache.commons.net.ftp.RegexFTPFileEntryParserImpl is its designated replacement. Class has been renamed, entire implemenation is in RegexFTPFileEntryParserImpl.
 

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

Methods in org.apache.commons.net.ftp that return FTPFileEntryParser
(package private)  FTPFileEntryParser FTPFileList.getParser()
          Deprecated. 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)
          Deprecated. The only way to create an FTPFileList object.
 FTPFileIterator FTPFileList.iterator(FTPFileEntryParser parser)
          Deprecated. create an iterator over this list using the supplied parser
private  FTPListParseEngine FTPClient.initiateListParsing(FTPFileEntryParser parser, java.lang.String pathname)
          private method through which all listFiles() and initiateListParsing methods pass once a parser is determined.
 FTPFileList FTPClient.createFileList(FTPFileEntryParser parser)
          Deprecated. - use initiateListParsing(FTPFileEntryParser) method instead.
 FTPFileList FTPClient.createFileList(java.lang.String pathname, FTPFileEntryParser parser)
          Deprecated. - use initiateListParsing(String, FTPFileEntryParser) method instead.
 

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

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

Classes in org.apache.commons.net.ftp.parser that implement FTPFileEntryParser
 class CompositeFileEntryParser
          This implementation allows to pack some FileEntryParsers together and handle the case where to returned dirstyle isnt clearly defined.
 class EnterpriseUnixFTPEntryParser
          Parser for the Connect Enterprise Unix FTP Server From Sterling Commerce.
 class NTFTPEntryParser
          Implementation of FTPFileEntryParser and FTPFileListParser for NT Systems.
 class OS2FTPEntryParser
          Implementation of FTPFileEntryParser and FTPFileListParser for OS2 Systems.
 class OS400FTPEntryParser
           
 class RegexFTPFileEntryParserImpl
          This abstract class implements both the older FTPFileListParser and newer FTPFileEntryParser interfaces with default functionality.
 class UnixFTPEntryParser
          Implementation FTPFileEntryParser and FTPFileListParser for standard Unix Systems.
 class VMSFTPEntryParser
          Implementation FTPFileEntryParser and FTPFileListParser for VMS Systems.
 class VMSVersioningFTPEntryParser
          Special implementation VMSFTPEntryParser with versioning turned on.
 

Fields in org.apache.commons.net.ftp.parser declared as FTPFileEntryParser
private  FTPFileEntryParser[] CompositeFileEntryParser.ftpFileEntryParsers
           
private  FTPFileEntryParser CompositeFileEntryParser.cachedFtpFileEntryParser
           
 

Methods in org.apache.commons.net.ftp.parser that return FTPFileEntryParser
 FTPFileEntryParser FTPFileEntryParserFactory.createFileEntryParser(java.lang.String key)
          Implementation should be a method that decodes the supplied key and creates an object implementing the interface FTPFileEntryParser.
 FTPFileEntryParser DefaultFTPFileEntryParserFactory.createFileEntryParser(java.lang.String key)
          This default implementation of the FTPFileEntryParserFactory interface works according to the following logic: First it attempts to interpret the supplied key as a fully qualified classname of a class implementing the FTPFileEntryParser interface.
 FTPFileEntryParser DefaultFTPFileEntryParserFactory.createUnixFTPEntryParser()
           
 FTPFileEntryParser DefaultFTPFileEntryParserFactory.createVMSVersioningFTPEntryParser()
           
 FTPFileEntryParser DefaultFTPFileEntryParserFactory.createNTFTPEntryParser()
           
 FTPFileEntryParser DefaultFTPFileEntryParserFactory.createOS2FTPEntryParser()
           
 FTPFileEntryParser DefaultFTPFileEntryParserFactory.createOS400FTPEntryParser()
           
 

Constructors in org.apache.commons.net.ftp.parser with parameters of type FTPFileEntryParser
CompositeFileEntryParser(FTPFileEntryParser[] ftpFileEntryParsers)