MCPcopy Create free account
hub / github.com/OpenDDS/OpenDDS / toString

Method toString

java/jms/src/org/opendds/jms/common/lang/Objects.java:38–48  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

36 }
37
38 public static String toString(Object o) {
39 assert o != null;
40
41 StringBuilder sb = new StringBuilder();
42
43 sb.append(o.getClass().getName());
44 sb.append('@');
45 sb.append(Integer.toHexString(o.hashCode()));
46
47 return sb.toString();
48 }
49
50 //
51

Callers 7

asIdentityMethod · 0.95
capitalizeMethod · 0.45
randomUuidMethod · 0.45
valueOfMethod · 0.45
hasNextMethod · 0.45
createTempDirectoryMethod · 0.45
addLibraryPathMethod · 0.45

Calls 3

getNameMethod · 0.65
appendMethod · 0.45
hashCodeMethod · 0.45

Tested by

no test coverage detected