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.


Constructor Index

 o DipListenerAuxiliaryComparator()

Method Index

 o isEqualTo(Object, Object)
Determines whether a DipListenerAuxiliary implementation is equal to another DipListenerAuxiliary implementation.
 o isGreaterThan(Object, Object)
Determines whether a DipListenerAuxiliary implementation is greater than another DipListenerAuxiliary implementation.
 o isLessThan(Object, Object)
Determines whether a DipListenerAuxiliary implementation is less than another DipListenerAuxiliary implementation.

Constructors

 o DipListenerAuxiliaryComparator
 public DipListenerAuxiliaryComparator()

Methods

 o 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.
 o 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.
 o 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