All Packages Class Hierarchy This Package Previous Next Index
Class com.ibm.beans.dip.DipListenerAuxiliaryComparator
java.lang.Object
|
+----com.ibm.beans.dip.DipListenerAuxiliaryComparator
- public class DipListenerAuxiliaryComparator
- extends Object
- implements Comparable, Serializable
This class compares two different DipListenerAuxiliary instances.
The DipInfo.priority() method is used for the comparison.
The DipListenerAuxiliaryComparator class is used to create priority queues of
DipListenerAuxiliary implementations.
-
DipListenerAuxiliaryComparator()
-
-
isEqualTo(Object, Object)
- Determines whether a DipListenerAuxiliary implementation is equal to
another DipListenerAuxiliary implementation.
-
isGreaterThan(Object, Object)
- Determines whether a DipListenerAuxiliary implementation is greater than
another DipListenerAuxiliary implementation.
-
isLessThan(Object, Object)
- Determines whether a DipListenerAuxiliary implementation is less than
another DipListenerAuxiliary implementation.
DipListenerAuxiliaryComparator
public DipListenerAuxiliaryComparator()
isLessThan
public final boolean isLessThan(Object x,
Object y)
- Determines whether a DipListenerAuxiliary implementation is less than
another DipListenerAuxiliary implementation.
- Parameters:
- x - The operand on the left side of the comparison.
- y - The operand on the right side of the comparison.
- Returns:
-
true
if x < y; false
otherwise.
isGreaterThan
public final boolean isGreaterThan(Object x,
Object y)
- Determines whether a DipListenerAuxiliary implementation is greater than
another DipListenerAuxiliary implementation.
- Parameters:
- x - The operand on the left side of the comparison.
- y - The operand on the right side of the comparison.
- Returns:
-
true
if x > y; false
otherwise.
isEqualTo
public final boolean isEqualTo(Object x,
Object y)
- Determines whether a DipListenerAuxiliary implementation is equal to
another DipListenerAuxiliary implementation.
- Parameters:
- x - The operand on the left side of the comparison.
- y - The operand on the right side of the comparison.
- Returns:
-
true
if x == y; false
otherwise.
All Packages Class Hierarchy This Package Previous Next Index