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(Object THIS, Object THAT)Compare two objects and return what THIS.equals(THAT) should returninthashCode(Object THIS)Return hashcode for THIS.hashCode()
-
-
-
Method Detail
-
equals
boolean equals(Object THIS, 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(Object THIS)
Return hashcode for THIS.hashCode()- Parameters:
THIS-- Returns:
- hashcode for THIS.hashCode()
-
-