Package org.apache.bcel.util
Interface BCELComparator
- 
public interface BCELComparatorUsed for BCEL comparison strategy- Since:
 - 5.2
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanequals(java.lang.Object THIS, java.lang.Object THAT)Compare two objects and return what THIS.equals(THAT) should returninthashCode(java.lang.Object THIS)Return hashcode for THIS.hashCode() 
 - 
 
- 
- 
Method Detail
- 
equals
boolean equals(java.lang.Object THIS, java.lang.Object THAT)Compare two objects and return what THIS.equals(THAT) should return- Parameters:
 THIS-THAT-- Returns:
 - true if and only if THIS equals THAT
 
 
- 
hashCode
int hashCode(java.lang.Object THIS)
Return hashcode for THIS.hashCode()- Parameters:
 THIS-- Returns:
 - hashcode for THIS.hashCode()
 
 
 - 
 
 -