public final class ReflectionUtil extends Object
Note: This class is not intended for instantiation.
| Modifier and Type | Method and Description |
|---|---|
static @NotNull String |
generatedPackageName(String classFullName)
Generates a package name based on the supplied class name.
|
static List<Class<?>> |
interfaces(@NotNull Class<?> oClass)
Creates and returns a new
List of all interfaces implemented by
the provided oClass and all its super classes. |
public static List<Class<?>> interfaces(@NotNull @NotNull Class<?> oClass)
List of all interfaces implemented by
the provided oClass and all its super classes.oClass - The class whose implemented interfaces (including inherited ones) are to be retrieved.List of all unique interfaces implemented by oClass and its superclass hierarchy.@NotNull public static @NotNull String generatedPackageName(String classFullName)
java. or if
PREPEND_PACKAGE is true, the resulting name will be prefixed with
PACKAGE_PREFIX.classFullName - The fully qualified name of the class for which to
generate a potentially modified package name (e.g.,
for generated proxy classes).Copyright © 2026 Chronicle Software Ltd. All rights reserved.