Uses of Class
org.apache.commons.io.comparator.AbstractFileComparator
-
Packages that use AbstractFileComparator Package Description org.apache.commons.io.comparator Provides variousComparator
implementations forFile
s. -
-
Uses of AbstractFileComparator in org.apache.commons.io.comparator
Subclasses of AbstractFileComparator in org.apache.commons.io.comparator Modifier and Type Class Description class
CompositeFileComparator
Compare two files using a set of delegate fileComparator
.class
DefaultFileComparator
Compares two files using the defaultFile.compareTo(File)
method.class
DirectoryFileComparator
Compare two files using theFile.isDirectory()
method.class
ExtensionFileComparator
Compare the file name extensions for order (seeFilenameUtils.getExtension(String)
).class
LastModifiedFileComparator
Compare the last modified date/time of two files for order (seeFileUtils.lastModifiedUnchecked(File)
).class
NameFileComparator
Compare the names of two files for order (seeFile.getName()
).class
PathFileComparator
Compare the path of two files for order (seeFile.getPath()
).(package private) class
ReverseFileComparator
Reverses the result of comparing twoFile
objects using the delegateComparator
.class
SizeFileComparator
Compare the length/size of two files for order (seeFile.length()
andFileUtils.sizeOfDirectory(File)
).
-