MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / equals

Method equals

collectiontopics/TypesForSets.java:13–16  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

11 protected int i;
12 SetType(int n) { i = n; }
13 @Override public boolean equals(Object o) {
14 return o instanceof SetType &&
15 Objects.equals(i, ((SetType)o).i);
16 }
17 @Override public String toString() {
18 return Integer.toString(i);
19 }

Callers 9

mainMethod · 0.45
stepMethod · 0.45
workMethod · 0.45
toStringMethod · 0.45
forwardMethod · 0.45
nextMethod · 0.45
completeMethod · 0.45
toStringMethod · 0.45
getMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected