Uses of Interface
com.armatiek.infofuze.stream.filesystem.FileIf

Packages that use FileIf
com.armatiek.infofuze.source.extractor   
com.armatiek.infofuze.source.filesystem   
com.armatiek.infofuze.source.filesystem.cifs   
com.armatiek.infofuze.source.filesystem.local   
com.armatiek.infofuze.source.filesystem.webcrawl   
com.armatiek.infofuze.source.filesystem.webdav   
com.armatiek.infofuze.stream.filesystem   
com.armatiek.infofuze.stream.filesystem.cifs   
com.armatiek.infofuze.stream.filesystem.compression   
com.armatiek.infofuze.stream.filesystem.compression.bzip2   
com.armatiek.infofuze.stream.filesystem.compression.gzip   
com.armatiek.infofuze.stream.filesystem.compression.tar   
com.armatiek.infofuze.stream.filesystem.compression.zip   
com.armatiek.infofuze.stream.filesystem.csv   
com.armatiek.infofuze.stream.filesystem.filefilter   
com.armatiek.infofuze.stream.filesystem.local   
com.armatiek.infofuze.stream.filesystem.webcrawl   
com.armatiek.infofuze.stream.filesystem.webdav   
 

Uses of FileIf in com.armatiek.infofuze.source.extractor
 

Methods in com.armatiek.infofuze.source.extractor with parameters of type FileIf
 boolean FileExtractor.accept(FileIf file)
           
 

Uses of FileIf in com.armatiek.infofuze.source.filesystem
 

Methods in com.armatiek.infofuze.source.filesystem that return FileIf
 FileIf[] FileSystemSource.getBaseFiles()
          Returns the base files (seeds) that are configured for this source.
abstract  FileIf FileSystemSource.getFile(java.lang.String location)
          Returns the file on a specific location.
 

Uses of FileIf in com.armatiek.infofuze.source.filesystem.cifs
 

Methods in com.armatiek.infofuze.source.filesystem.cifs that return FileIf
 FileIf CIFSSource.getFile(java.lang.String location)
           
 

Uses of FileIf in com.armatiek.infofuze.source.filesystem.local
 

Methods in com.armatiek.infofuze.source.filesystem.local that return FileIf
 FileIf LocalFileSystemSource.getFile(java.lang.String location)
           
 

Uses of FileIf in com.armatiek.infofuze.source.filesystem.webcrawl
 

Methods in com.armatiek.infofuze.source.filesystem.webcrawl that return FileIf
 FileIf WebCrawlSource.getFile(java.lang.String location)
           
 

Uses of FileIf in com.armatiek.infofuze.source.filesystem.webdav
 

Methods in com.armatiek.infofuze.source.filesystem.webdav that return FileIf
 FileIf WebDAVSource.getFile(java.lang.String location)
           
 

Uses of FileIf in com.armatiek.infofuze.stream.filesystem
 

Classes in com.armatiek.infofuze.stream.filesystem that implement FileIf
 class AbstractFile
           
 class ProxyFile
           
 

Methods in com.armatiek.infofuze.stream.filesystem that return FileIf
 FileIf ProxyFile.getParentFile()
           
 FileIf FileIf.getParentFile()
          Returns the parent of the file.
 

Methods in com.armatiek.infofuze.stream.filesystem that return types with arguments of type FileIf
 java.util.Iterator<FileIf> ProxyFile.listFiles()
           
 java.util.Iterator<FileIf> FileIf.listFiles()
          Returns an iterator of files and directories in the directory denoted by this file.
 java.util.Iterator<FileIf> AbstractFile.listFiles()
           
 

Constructors in com.armatiek.infofuze.stream.filesystem with parameters of type FileIf
FileSystemReader(FileIf[] files, java.util.List<FileExtractor> fileExtractors, Definitions.TransformMode transformMode, long lastIndexed, java.lang.String systemId, java.lang.String publicId)
           
ProxyFile(FileIf proxy)
           
 

Uses of FileIf in com.armatiek.infofuze.stream.filesystem.cifs
 

Classes in com.armatiek.infofuze.stream.filesystem.cifs that implement FileIf
 class CIFSFile
          A file within a CIFS/SMB filesystem.
 

Methods in com.armatiek.infofuze.stream.filesystem.cifs that return FileIf
 FileIf CIFSFile.getParentFile()
           
 

Methods in com.armatiek.infofuze.stream.filesystem.cifs that return types with arguments of type FileIf
 java.util.Iterator<FileIf> CIFSFile.listFiles()
           
 

Constructors in com.armatiek.infofuze.stream.filesystem.cifs with parameters of type FileIf
CIFSFileSystemReader(FileIf[] files, java.util.List<FileExtractor> fileExtractors, Definitions.TransformMode transformMode, long lastIndexed, java.lang.String systemId, java.lang.String publicId, boolean extractSecurity, boolean extractShareSecurity, java.lang.String ldapSourceName, java.lang.String ldapResultXslPath)
           
 

Uses of FileIf in com.armatiek.infofuze.stream.filesystem.compression
 

Classes in com.armatiek.infofuze.stream.filesystem.compression that implement FileIf
 class ArchiveFile
          An abstract representation of a archive file.
 class ArchiveFileEntry
          An abstract representation of a file entry within an archive.
 

Methods in com.armatiek.infofuze.stream.filesystem.compression that return FileIf
 FileIf ArchiveFileEntry.getParentFile()
           
 FileIf ArchiveFile.getParentFile()
           
 FileIf ArchiveEntryIterator.next()
           
 

Methods in com.armatiek.infofuze.stream.filesystem.compression that return types with arguments of type FileIf
 java.util.Iterator<FileIf> ArchiveFileEntry.listFiles()
           
 

Constructors in com.armatiek.infofuze.stream.filesystem.compression with parameters of type FileIf
ArchiveFile(FileIf file)
           
 

Uses of FileIf in com.armatiek.infofuze.stream.filesystem.compression.bzip2
 

Classes in com.armatiek.infofuze.stream.filesystem.compression.bzip2 that implement FileIf
 class BZip2ArchiveFile
          An BZIP2 archive file.
 class BZip2ArchiveFileEntry
          An representation of a file entry within a BZIP2 archive file.
 

Methods in com.armatiek.infofuze.stream.filesystem.compression.bzip2 that return FileIf
 FileIf BZip2ArchiveFileEntry.getParentFile()
           
 FileIf BZip2ArchiveEntryIterator.next()
           
 

Methods in com.armatiek.infofuze.stream.filesystem.compression.bzip2 that return types with arguments of type FileIf
 java.util.Iterator<FileIf> BZip2ArchiveFileEntry.listFiles()
           
 java.util.Iterator<FileIf> BZip2ArchiveFile.listFiles()
           
 

Constructors in com.armatiek.infofuze.stream.filesystem.compression.bzip2 with parameters of type FileIf
BZip2ArchiveFile(FileIf file)
           
 

Uses of FileIf in com.armatiek.infofuze.stream.filesystem.compression.gzip
 

Classes in com.armatiek.infofuze.stream.filesystem.compression.gzip that implement FileIf
 class GzipArchiveFile
          An GZIP archive file.
 class GzipArchiveFileEntry
          An representation of a file entry within a GZIP archive file.
 

Methods in com.armatiek.infofuze.stream.filesystem.compression.gzip that return FileIf
 FileIf GzipArchiveFileEntry.getParentFile()
           
 FileIf GzipArchiveEntryIterator.next()
           
 

Methods in com.armatiek.infofuze.stream.filesystem.compression.gzip that return types with arguments of type FileIf
 java.util.Iterator<FileIf> GzipArchiveFileEntry.listFiles()
           
 java.util.Iterator<FileIf> GzipArchiveFile.listFiles()
           
 

Constructors in com.armatiek.infofuze.stream.filesystem.compression.gzip with parameters of type FileIf
GzipArchiveFile(FileIf file)
           
 

Uses of FileIf in com.armatiek.infofuze.stream.filesystem.compression.tar
 

Classes in com.armatiek.infofuze.stream.filesystem.compression.tar that implement FileIf
 class TarArchiveFile
          An TAR archive file.
 class TarArchiveFileEntry
          An representation of a file entry within a TAR archive file.
 

Methods in com.armatiek.infofuze.stream.filesystem.compression.tar that return types with arguments of type FileIf
 java.util.Iterator<FileIf> TarArchiveFile.listFiles()
           
 

Constructors in com.armatiek.infofuze.stream.filesystem.compression.tar with parameters of type FileIf
TarArchiveFile(FileIf file)
           
 

Uses of FileIf in com.armatiek.infofuze.stream.filesystem.compression.zip
 

Classes in com.armatiek.infofuze.stream.filesystem.compression.zip that implement FileIf
 class ZipArchiveFile
          A ZIP archive file.
 class ZipArchiveFileEntry
          An representation of a file entry within a ZIP archive file.
 

Methods in com.armatiek.infofuze.stream.filesystem.compression.zip that return types with arguments of type FileIf
 java.util.Iterator<FileIf> ZipArchiveFile.listFiles()
           
 

Constructors in com.armatiek.infofuze.stream.filesystem.compression.zip with parameters of type FileIf
ZipArchiveFile(FileIf file)
           
 

Uses of FileIf in com.armatiek.infofuze.stream.filesystem.csv
 

Classes in com.armatiek.infofuze.stream.filesystem.csv that implement FileIf
 class CSVFile
          A CSV (comma separated values) file.
 

Constructors in com.armatiek.infofuze.stream.filesystem.csv with parameters of type FileIf
CSVFile(FileIf proxy, CSVFileExtractor extractor)
           
 

Uses of FileIf in com.armatiek.infofuze.stream.filesystem.filefilter
 

Methods in com.armatiek.infofuze.stream.filesystem.filefilter that return FileIf
static FileIf[] FileFilterUtils.filter(IOFileFilter filter, FileIf... files)
           Applies an IOFileFilter to the provided FileIf objects.
static FileIf[] FileFilterUtils.filter(IOFileFilter filter, java.lang.Iterable<FileIf> files)
           Applies an IOFileFilter to the provided File objects.
 

Methods in com.armatiek.infofuze.stream.filesystem.filefilter that return types with arguments of type FileIf
static java.util.List<FileIf> FileFilterUtils.filterList(IOFileFilter filter, FileIf... files)
           Applies an IOFileFilter to the provided File objects.
static java.util.List<FileIf> FileFilterUtils.filterList(IOFileFilter filter, java.lang.Iterable<FileIf> files)
           Applies an IOFileFilter to the provided File objects.
static java.util.Set<FileIf> FileFilterUtils.filterSet(IOFileFilter filter, FileIf... files)
           Applies an IOFileFilter to the provided File objects.
static java.util.Set<FileIf> FileFilterUtils.filterSet(IOFileFilter filter, java.lang.Iterable<FileIf> files)
           Applies an IOFileFilter to the provided File objects.
 

Methods in com.armatiek.infofuze.stream.filesystem.filefilter with parameters of type FileIf
 boolean WildcardFileFilter.accept(FileIf file)
          Checks to see if the filename matches one of the wildcards.
 boolean TrueFileFilter.accept(FileIf file)
          Returns true.
 boolean SuffixFileFilter.accept(FileIf file)
          Checks to see if the filename ends with the suffix.
 boolean SizeFileFilter.accept(FileIf file)
          Checks to see if the size of the file is favorable.
 boolean RegexFileFilter.accept(FileIf file)
          Checks to see if the filename matches one of the regular expressions.
 boolean PrefixFileFilter.accept(FileIf file)
          Checks to see if the filename starts with the prefix.
 boolean OrFileFilter.accept(FileIf file)
          Checks to see if the FileIf should be accepted by this filter.
 boolean NotFileFilter.accept(FileIf file)
          Returns the logical NOT of the underlying filter's return value for the same File.
 boolean NameFileFilter.accept(FileIf file)
          Checks to see if the filename matches.
 boolean MimeTypeFileFilter.accept(FileIf file)
          Checks to see if the filename matches.
 boolean IOFileFilter.accept(FileIf file)
          Checks to see if the FileIf should be accepted by this filter.
 boolean HiddenFileFilter.accept(FileIf file)
          Checks to see if the file is hidden.
 boolean FileFileFilter.accept(FileIf file)
          Checks to see if the file is a file.
 boolean FalseFileFilter.accept(FileIf file)
          Returns false.
 boolean EmptyFileFilter.accept(FileIf file)
          Checks to see if the file is empty.
 boolean DirectoryFileFilter.accept(FileIf file)
          Checks to see if the file is a directory.
 boolean CanReadFileFilter.accept(FileIf file)
          Checks to see if the file can be read.
 boolean AndFileFilter.accept(FileIf file)
          Checks to see if the FileIf should be accepted by this filter.
 boolean AgeFileFilter.accept(FileIf file)
          Checks to see if the last modification of the file matches cutoff favorably.
 boolean FalseFileFilter.accept(FileIf dir, java.lang.String name)
          Returns false.
static IOFileFilter FileFilterUtils.ageFileFilter(FileIf cutoffReference)
          Returns a filter that returns true if the file was last modified after the specified reference file.
static IOFileFilter FileFilterUtils.ageFileFilter(FileIf cutoffReference, boolean acceptOlder)
          Returns a filter that filters files based on a cutoff reference file.
static FileIf[] FileFilterUtils.filter(IOFileFilter filter, FileIf... files)
           Applies an IOFileFilter to the provided FileIf objects.
static java.util.List<FileIf> FileFilterUtils.filterList(IOFileFilter filter, FileIf... files)
           Applies an IOFileFilter to the provided File objects.
static java.util.Set<FileIf> FileFilterUtils.filterSet(IOFileFilter filter, FileIf... files)
           Applies an IOFileFilter to the provided File objects.
static boolean AgeFileFilter.isFileNewer(FileIf file, long timeMillis)
           
 

Method parameters in com.armatiek.infofuze.stream.filesystem.filefilter with type arguments of type FileIf
static FileIf[] FileFilterUtils.filter(IOFileFilter filter, java.lang.Iterable<FileIf> files)
           Applies an IOFileFilter to the provided File objects.
static java.util.List<FileIf> FileFilterUtils.filterList(IOFileFilter filter, java.lang.Iterable<FileIf> files)
           Applies an IOFileFilter to the provided File objects.
static java.util.Set<FileIf> FileFilterUtils.filterSet(IOFileFilter filter, java.lang.Iterable<FileIf> files)
           Applies an IOFileFilter to the provided File objects.
 

Constructors in com.armatiek.infofuze.stream.filesystem.filefilter with parameters of type FileIf
AgeFileFilter(FileIf cutoffReference)
          Constructs a new age file filter for files older than (at or before) a certain File (whose last modification time will be used as reference).
AgeFileFilter(FileIf cutoffReference, boolean acceptOlder)
          Constructs a new age file filter for files on any one side of a certain File (whose last modification time will be used as reference).
 

Uses of FileIf in com.armatiek.infofuze.stream.filesystem.local
 

Classes in com.armatiek.infofuze.stream.filesystem.local that implement FileIf
 class LocalFile
           
 

Methods in com.armatiek.infofuze.stream.filesystem.local that return FileIf
 FileIf LocalFile.getParentFile()
           
 

Methods in com.armatiek.infofuze.stream.filesystem.local that return types with arguments of type FileIf
 java.util.Iterator<FileIf> LocalFile.listFiles()
           
 

Constructors in com.armatiek.infofuze.stream.filesystem.local with parameters of type FileIf
LocalFileSystemReader(FileIf[] files, java.util.List<FileExtractor> fileExtractors, Definitions.TransformMode transformMode, long lastIndexed, java.lang.String systemId, java.lang.String publicId)
           
 

Uses of FileIf in com.armatiek.infofuze.stream.filesystem.webcrawl
 

Classes in com.armatiek.infofuze.stream.filesystem.webcrawl that implement FileIf
 class HTTPFile
          Class representing a file that can be retrieved using the HTTP.
 

Methods in com.armatiek.infofuze.stream.filesystem.webcrawl that return FileIf
 FileIf HTTPFile.getParentFile()
           
 

Methods in com.armatiek.infofuze.stream.filesystem.webcrawl that return types with arguments of type FileIf
 java.util.Iterator<FileIf> HTTPFile.listFiles()
           
 

Constructors in com.armatiek.infofuze.stream.filesystem.webcrawl with parameters of type FileIf
WebCrawlReader(FileIf[] files, java.util.List<FileExtractor> fileExtractors, Definitions.TransformMode transformMode, long lastIndexed, java.lang.String systemId, java.lang.String publicId)
           
 

Uses of FileIf in com.armatiek.infofuze.stream.filesystem.webdav
 

Classes in com.armatiek.infofuze.stream.filesystem.webdav that implement FileIf
 class WebDAVFile
           
 

Methods in com.armatiek.infofuze.stream.filesystem.webdav that return FileIf
 FileIf WebDAVFile.getParentFile()
           
 

Methods in com.armatiek.infofuze.stream.filesystem.webdav that return types with arguments of type FileIf
 java.util.Iterator<FileIf> WebDAVFile.listFiles()
           
 

Constructors in com.armatiek.infofuze.stream.filesystem.webdav with parameters of type FileIf
WebDAVReader(FileIf[] files, java.util.List<FileExtractor> fileExtractors, Definitions.TransformMode transformMode, long lastIndexed, java.lang.String systemId, java.lang.String publicId)