MCPcopy Index your code
hub / github.com/lightbend/config / equals

Method equals

config/src/main/java/com/typesafe/config/impl/Path.java:158–168  ·  view source on GitHub ↗
(Object other)

Source from the content-addressed store, hash-verified

156 }
157
158 @Override
159 public boolean equals(Object other) {
160 if (other instanceof Path) {
161 Path that = (Path) other;
162 return this.first.equals(that.first)
163 && ConfigImplUtil.equalsHandlingNull(this.remainder,
164 that.remainder);
165 } else {
166 return false;
167 }
168 }
169
170 @Override
171 public int hashCode() {

Callers 15

hasValueMethod · 0.95
changeValueOnPathMethod · 0.95
setOriginDescriptionMethod · 0.45
startsWithMethod · 0.45
pullUnquotedTextMethod · 0.45
createInternalMethod · 0.45
loadDiagnosticsMethod · 0.45
improveNotResolvedMethod · 0.45
findMethod · 0.45
transformMethod · 0.45
equalsHandlingNullMethod · 0.45
addQuoteSuggestionMethod · 0.45

Calls 1

equalsHandlingNullMethod · 0.95

Tested by

no test coverage detected