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

Method hashCode

java/jakarta/el/Util.java:699–710  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

697 }
698
699 @Override
700 public int hashCode() {
701 final int prime = 31;
702 int result = 1;
703 result = prime * result + getAssignableCount();
704 result = prime * result + (isBridge() ? 1231 : 1237);
705 result = prime * result + getCoercibleCount();
706 result = prime * result + getExactCount();
707 result = prime * result + (isVarArgs() ? 1231 : 1237);
708 result = prime * result + getVarArgsCount();
709 return result;
710 }
711 }
712}

Callers

nothing calls this directly

Calls 6

getAssignableCountMethod · 0.95
isBridgeMethod · 0.95
getCoercibleCountMethod · 0.95
getExactCountMethod · 0.95
isVarArgsMethod · 0.95
getVarArgsCountMethod · 0.95

Tested by

no test coverage detected