Package kilim.analysis
Class FileLister.Entry
- java.lang.Object
-
- kilim.analysis.FileLister.Entry
-
- Direct Known Subclasses:
DirIterator.DirEntry,JarIterator.JEntry
- Enclosing class:
- FileLister
public abstract static class FileLister.Entry extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Entry()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleancheck(java.lang.String outdir)check if a newer version of the file exists in an output directory.abstract java.lang.StringgetFileName()abstract java.io.InputStreamgetInputStream()abstract longgetSize()
-
-
-
Method Detail
-
getFileName
public abstract java.lang.String getFileName()
-
getSize
public abstract long getSize()
-
getInputStream
public abstract java.io.InputStream getInputStream() throws java.io.IOException- Throws:
java.io.IOException
-
check
public boolean check(java.lang.String outdir)
check if a newer version of the file exists in an output directory. false negatives are allowed- Parameters:
outdir- the output directory- Returns:
- true if the newer version exists
-
-