MCPcopy
hub / github.com/google/guava / equals

Method equals

android/guava/src/com/google/common/reflect/Parameter.java:128–135  ·  view source on GitHub ↗
(@Nullable Object obj)

Source from the content-addressed store, hash-verified

126 }
127
128 @Override
129 public boolean equals(@Nullable Object obj) {
130 if (obj instanceof Parameter) {
131 Parameter that = (Parameter) obj;
132 return position == that.position && declaration.equals(that.declaration);
133 }
134 return false;
135 }
136
137 @Override
138 public int hashCode() {

Callers

nothing calls this directly

Calls 1

equalsMethod · 0.65

Tested by

no test coverage detected