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

Method isSet

java/dagger/internal/codegen/SetType.java:91–93  ·  view source on GitHub ↗

true if type is a Set type.

(TypeMirror type)

Source from the content-addressed store, hash-verified

89 * {@code true} if {@code type} is a {@link Set} type.
90 */
91 static boolean isSet(TypeMirror type) {
92 return MoreTypes.isType(type) && MoreTypes.isTypeOf(Set.class, type);
93 }
94
95 /**
96 * {@code true} if {@code key.type()} is a {@link Set} type.

Callers 11

checkSetValuesTypeMethod · 0.95
forDeclaredMethodMethod · 0.95
contributionTypeMethod · 0.95
isPlainSetMethod · 0.95
forBindingMethodMethod · 0.95
bindingMethodKeyTypeMethod · 0.95
unwrapSetKeyMethod · 0.95
checkParametersMethod · 0.95
fromMethod · 0.95

Calls 1

typeMethod · 0.45

Tested by

no test coverage detected