Class HalResourceCacheEntryComparator
- java.lang.Object
-
- org.camunda.bpm.engine.rest.hal.cache.HalResourceCacheEntryComparator
-
- All Implemented Interfaces:
Comparator<HalResourceCacheEntry>
public class HalResourceCacheEntryComparator extends Object implements Comparator<HalResourceCacheEntry>
-
-
Field Summary
Fields Modifier and Type Field Description static Comparator<HalResourceCacheEntry>
INSTANCE
static Comparator<HalResourceCacheEntry>
REVERSE
-
Constructor Summary
Constructors Constructor Description HalResourceCacheEntryComparator()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compare(HalResourceCacheEntry entry1, HalResourceCacheEntry entry2)
static Comparator<HalResourceCacheEntry>
getInstance()
Sort cache entries by ascending create time (oldest first)static Comparator<HalResourceCacheEntry>
getReverse()
Sort cache entries by descending create time (newest first)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Comparator
equals, reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
-
-
-
-
Field Detail
-
INSTANCE
public static final Comparator<HalResourceCacheEntry> INSTANCE
-
REVERSE
public static final Comparator<HalResourceCacheEntry> REVERSE
-
-
Method Detail
-
getInstance
public static Comparator<HalResourceCacheEntry> getInstance()
Sort cache entries by ascending create time (oldest first)
-
getReverse
public static Comparator<HalResourceCacheEntry> getReverse()
Sort cache entries by descending create time (newest first)
-
compare
public int compare(HalResourceCacheEntry entry1, HalResourceCacheEntry entry2)
- Specified by:
compare
in interfaceComparator<HalResourceCacheEntry>
-
-