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)
| 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) { |