Package org.eclipse.jetty.util
Class IntrospectionUtil
- java.lang.Object
-
- org.eclipse.jetty.util.IntrospectionUtil
-
@Deprecated(since="2021-05-27") public class IntrospectionUtil extends Object
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.IntrospectionUtil
-
-
Constructor Summary
Constructors Constructor Description IntrospectionUtil()Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static booleancheckParams(Class<?>[] formalParams, Class<?>[] actualParams, boolean strict)Deprecated.static booleancontainsSameFieldName(Field field, Class<?> c, boolean checkPackage)Deprecated.static booleancontainsSameMethodSignature(Method method, Class<?> c, boolean checkPackage)Deprecated.static FieldfindField(Class<?> clazz, String targetName, Class<?> targetType, boolean checkInheritance, boolean strictType)Deprecated.static MethodfindMethod(Class<?> clazz, String methodName, Class<?>[] args, boolean checkInheritance, boolean strictArgs)Deprecated.static booleanisInheritable(Package pack, Member member)Deprecated.static booleanisJavaBeanCompliantSetter(Method method)Deprecated.static booleanisSameSignature(Method methodA, Method methodB)Deprecated.static booleanisTypeCompatible(Class<?> formalType, Class<?> actualType, boolean strict)Deprecated.
-
-
-
Method Detail
-
isJavaBeanCompliantSetter
public static boolean isJavaBeanCompliantSetter(Method method)
Deprecated.
-
findMethod
public static Method findMethod(Class<?> clazz, String methodName, Class<?>[] args, boolean checkInheritance, boolean strictArgs) throws NoSuchMethodException
Deprecated.- Throws:
NoSuchMethodException
-
findField
public static Field findField(Class<?> clazz, String targetName, Class<?> targetType, boolean checkInheritance, boolean strictType) throws NoSuchFieldException
Deprecated.- Throws:
NoSuchFieldException
-
checkParams
public static boolean checkParams(Class<?>[] formalParams, Class<?>[] actualParams, boolean strict)
Deprecated.
-
isTypeCompatible
public static boolean isTypeCompatible(Class<?> formalType, Class<?> actualType, boolean strict)
Deprecated.
-
containsSameMethodSignature
public static boolean containsSameMethodSignature(Method method, Class<?> c, boolean checkPackage)
Deprecated.
-
-