MCPcopy Create free account
hub / github.com/antlr/codebuff / equals

Method equals

output/java_guava/1.4.19/Types.java:496–504  ·  view source on GitHub ↗
(Object obj)

Source from the content-addressed store, hash-verified

494 }
495
496 @Override
497 public boolean equals(Object obj) {
498 if (obj instanceof WildcardType) {
499 WildcardType that = (WildcardType) obj;
500 return lowerBounds.equals(Arrays.asList(that.getLowerBounds()))
501 && upperBounds.equals(Arrays.asList(that.getUpperBounds()));
502 }
503 return false;
504 }
505
506 @Override
507 public int hashCode() {

Callers

nothing calls this directly

Calls 4

equalsMethod · 0.65
asListMethod · 0.45
getLowerBoundsMethod · 0.45
getUpperBoundsMethod · 0.45

Tested by

no test coverage detected