- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for getSimpleClassName (0.11 seconds)
-
src/main/java/org/codelibs/core/lang/ClassUtil.java
* The class. Must not be {@literal null}. * @return The class name. */ public static String getSimpleClassName(final Class<?> clazz) { assertArgumentNotNull("clazz", clazz); if (clazz.isArray()) { return getSimpleClassName(clazz.getComponentType()) + "[]"; } return clazz.getName(); } /**Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 25.6K bytes - Click Count (0)