MCPcopy Create free account
hub / github.com/apache/tomcat / equals

Method equals

java/jakarta/el/Util.java:688–697  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

686 }
687
688 @Override
689 public boolean equals(Object o) {
690 return o == this || (null != o && this.getClass().equals(o.getClass()) &&
691 ((MatchResult) o).getExactCount() == this.getExactCount() &&
692 ((MatchResult) o).getAssignableCount() == this.getAssignableCount() &&
693 ((MatchResult) o).getCoercibleCount() == this.getCoercibleCount() &&
694 ((MatchResult) o).getVarArgsCount() == this.getVarArgsCount() &&
695 ((MatchResult) o).isVarArgs() == this.isVarArgs() &&
696 ((MatchResult) o).isBridge() == this.isBridge());
697 }
698
699 @Override
700 public int hashCode() {

Callers

nothing calls this directly

Calls 9

getExactCountMethod · 0.95
getAssignableCountMethod · 0.95
getCoercibleCountMethod · 0.95
getVarArgsCountMethod · 0.95
isVarArgsMethod · 0.95
isBridgeMethod · 0.95
equalsMethod · 0.65
isVarArgsMethod · 0.45
isBridgeMethod · 0.45

Tested by

no test coverage detected