Home
last modified time | relevance | path

Searched refs:rawTarget (Results 1 – 1 of 1) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DTypeBase.java126 public final JavaType findSuperType(Class<?> rawTarget) in findSuperType() argument
128 if (rawTarget == _class) { in findSuperType()
132 if (rawTarget.isInterface() && (_superInterfaces != null)) { in findSuperType()
134 JavaType type = _superInterfaces[i].findSuperType(rawTarget); in findSuperType()
142 JavaType type = _superClass.findSuperType(rawTarget); in findSuperType()