MCPcopy Create free account
hub / github.com/BaseXdb/basex / find

Method find

basex-core/src/main/java/org/basex/util/Reflect.java:45–52  ·  view source on GitHub ↗

Caches and returns a reference to the specified class. @param name fully qualified class name @return reference, or null if the class is not found

(final String name)

Source from the content-addressed store, hash-verified

43 * @return reference, or {@code null} if the class is not found
44 */
45 public static Class<?> find(final String name) {
46 try {
47 return forName(name);
48 } catch(final Throwable ex) {
49 Util.debug(ex);
50 return null;
51 }
52 }
53
54 /**
55 * Caches and returns a reference to the specified class, or throws an exception.

Callers 15

wsSessionMethod · 0.95
FunctionsClass · 0.95
itemMethod · 0.95
XsltReportClass · 0.95
XsltFnClass · 0.95
ValidateXsdClass · 0.95
validateMethod · 0.95
findClassMethod · 0.95
lfMethod · 0.95
resolverMethod · 0.95
addMethod · 0.95
SnowballStemmerClass · 0.95

Calls 8

forNameMethod · 0.95
debugMethod · 0.95
infoMethod · 0.95
appendMethod · 0.65
toStringMethod · 0.65
getMethod · 0.65
getNameMethod · 0.45
putMethod · 0.45

Tested by 1

assertErrorMethod · 0.36