Package org.apache.uima.pear.util
Class FileUtil.FileTimeComparator
- java.lang.Object
-
- org.apache.uima.pear.util.FileUtil.FileTimeComparator
-
- All Implemented Interfaces:
Comparator<File>
- Enclosing class:
- FileUtil
public static class FileUtil.FileTimeComparator extends Object implements Comparator<File>
TheFileTimeComparatorclass allows comparing 'last modified' time in 2 givenFileobjects.
-
-
Constructor Summary
Constructors Constructor Description FileTimeComparator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompare(File o1, File o2)booleanequals(Object obj)-
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Comparator
reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
-
-
-
-
Method Detail
-
compare
public int compare(File o1, File o2) throws ClassCastException
- Specified by:
comparein interfaceComparator<File>- Returns:
- A negative integer, zero, or a positive integer as the first argument is less than, equal to, or greater than the second.
- Throws:
ClassCastException- if the arguments' types prevent them from being compared by thisComparator.
-
equals
public boolean equals(Object obj)
- Specified by:
equalsin interfaceComparator<File>- Overrides:
equalsin classObject- Parameters:
obj- The reference object with which to compare.- Returns:
trueonly if the specified object is also aFileTimeComparator, and it imposes the same ordering as this comparator.
-
-