MCPcopy Create free account
hub / github.com/antlr/codebuff / someRawTypeIsSubclassOf

Method someRawTypeIsSubclassOf

output/java_guava/1.4.19/TypeToken.java:910–917  ·  view source on GitHub ↗
(Class<?> superclass)

Source from the content-addressed store, hash-verified

908
909
910 private boolean someRawTypeIsSubclassOf(Class<?> superclass) {
911 for (Class<?> rawType : getRawTypes()) {
912 if (superclass.isAssignableFrom(rawType)) {
913 return true;
914 }
915 }
916 return false;
917 }
918
919
920 private boolean isSubtypeOfParameterizedType(ParameterizedType supertype) {

Callers 4

getSupertypeMethod · 0.95
isSubtypeOfMethod · 0.95
methodMethod · 0.95

Calls 1

getRawTypesMethod · 0.95

Tested by

no test coverage detected