MCPcopy Index your code
hub / github.com/google/dagger / toString

Method toString

java/dagger/model/Key.java:93–98  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

91 public abstract int hashCode();
92
93 @Override
94 public final String toString() {
95 return Joiner.on(' ')
96 .skipNulls()
97 .join(qualifier().orElse(null), type(), multibindingContributionIdentifier().orElse(null));
98 }
99
100 /** Returns a builder for {@link Key}s. */
101 public static Builder builder(TypeMirror type) {

Callers 15

forProvidesMethodMethod · 0.95
forProducesMethodMethod · 0.95
writeMethod · 0.45
DotNodeMethod · 0.45
DotEdgeMethod · 0.45
simpleServiceNameMethod · 0.45

Calls 5

qualifierMethod · 0.95
typeMethod · 0.95
joinMethod · 0.80
onMethod · 0.65