Package io.netty.util.internal
Class ReflectionUtil
- java.lang.Object
-
- io.netty.util.internal.ReflectionUtil
-
public final class ReflectionUtil extends java.lang.Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.Throwable
trySetAccessible(java.lang.reflect.AccessibleObject object, boolean checkAccessible)
Try to callAccessibleObject.setAccessible(boolean)
but will catch anySecurityException
andInaccessibleObjectException
and return it.
-
-
-
Method Detail
-
trySetAccessible
public static java.lang.Throwable trySetAccessible(java.lang.reflect.AccessibleObject object, boolean checkAccessible)
Try to callAccessibleObject.setAccessible(boolean)
but will catch anySecurityException
andInaccessibleObjectException
and return it. The caller must check if it returnsnull
and if not handle the returned exception.
-
-