MCPcopy Index your code
hub / github.com/apache/tomcat / resolveStatic

Method resolveStatic

java/jakarta/el/ImportHandler.java:503–505  ·  view source on GitHub ↗

Resolves a statically imported member name to the Class that declares it. The name is the simple name of the static field or method as registered by #importStatic(String). @param name the simple name of the static member @return the declaring Class, or null if not f

(String name)

Source from the content-addressed store, hash-verified

501 * @return the declaring {@link Class}, or {@code null} if not found
502 */
503 public Class<?> resolveStatic(String name) {
504 return statics.get(name);
505 }
506
507
508 private Class<?> findClass(String name, boolean throwException) {

Callers 5

testImportStatic01Method · 0.95
testImportStatic03Method · 0.95
getValueMethod · 0.95
getValueMethod · 0.80
getValueMethod · 0.80

Calls 1

getMethod · 0.65

Tested by 2

testImportStatic01Method · 0.76
testImportStatic03Method · 0.76