Uses of Class
org.apache.commons.io.comparator.AbstractFileComparator
-
Packages that use AbstractFileComparator Package Description org.apache.commons.io.comparator Provides variousComparatorimplementations forFiles andPath. -
-
Uses of AbstractFileComparator in org.apache.commons.io.comparator
Subclasses of AbstractFileComparator in org.apache.commons.io.comparator Modifier and Type Class Description classCompositeFileComparatorCompare two files using a set of delegate fileComparator.classDefaultFileComparatorCompares two files using the defaultFile.compareTo(File)method.classDirectoryFileComparatorCompare two files using theFile.isDirectory()method.classExtensionFileComparatorCompare the file name extensions for order (seeFilenameUtils.getExtension(String)).classLastModifiedFileComparatorCompare the last modified date/time of two files for order (seeFileUtils.lastModifiedUnchecked(File)).classNameFileComparatorCompare the names of two files for order (seeFile.getName()).classPathFileComparatorCompare the path of two files for order (seeFile.getPath()).(package private) classReverseFileComparatorReverses the result of comparing twoFileobjects using the delegateComparator.classSizeFileComparatorCompare the length/size of two files for order (seeFile.length()andFileUtils.sizeOfDirectory(File)).
-