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

Method someRawTypeIsSubclassOf

output/java_guava/1.4.18/TypeToken.java:909–916  ·  view source on GitHub ↗
(Class<?> superclass)

Source from the content-addressed store, hash-verified

907
908
909 private boolean someRawTypeIsSubclassOf(Class<?> superclass) {
910 for (Class<?> rawType : getRawTypes()) {
911 if (superclass.isAssignableFrom(rawType)) {
912 return true;
913 }
914 }
915 return false;
916 }
917
918
919 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