()
| 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) { |