Package com.avoka.fc.core.entity
Class Job.StepActionsComparator
- java.lang.Object
-
- com.avoka.fc.core.entity.Job.StepActionsComparator
-
- All Implemented Interfaces:
Comparator<JobAction>
- Direct Known Subclasses:
JobStep.ActionsComparator
- Enclosing class:
- Job
public static class Job.StepActionsComparator extends Object implements Comparator<JobAction>
Provides a Job Step Actions Comparator.- Since:
- 4.3.0
-
-
Constructor Summary
Constructors Constructor Description StepActionsComparator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compare(JobAction a1, JobAction a2)
-
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
-
-
-
-
Method Detail
-
compare
public int compare(JobAction a1, JobAction a2)
- Specified by:
compare
in interfaceComparator<JobAction>
- Parameters:
a1
- job action 1 to comparea2
- job action 2 to compare- Returns:
- the comparison result
- See Also:
Comparator.compare(Object, Object)
-
-