Package org.eclipse.jetty.util
Class IntrospectionUtil
java.lang.Object
org.eclipse.jetty.util.IntrospectionUtil
Deprecated.
The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
IntrospectionUtil
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
checkParams
(Class<?>[] formalParams, Class<?>[] actualParams, boolean strict) Deprecated.static boolean
containsSameFieldName
(Field field, Class<?> c, boolean checkPackage) Deprecated.static boolean
containsSameMethodSignature
(Method method, Class<?> c, boolean checkPackage) Deprecated.static Field
findField
(Class<?> clazz, String targetName, Class<?> targetType, boolean checkInheritance, boolean strictType) Deprecated.static Method
findMethod
(Class<?> clazz, String methodName, Class<?>[] args, boolean checkInheritance, boolean strictArgs) Deprecated.static boolean
isInheritable
(Package pack, Member member) Deprecated.static boolean
isJavaBeanCompliantSetter
(Method method) Deprecated.static boolean
isSameSignature
(Method methodA, Method methodB) Deprecated.static boolean
isTypeCompatible
(Class<?> formalType, Class<?> actualType, boolean strict) Deprecated.
-
Constructor Details
-
IntrospectionUtil
public IntrospectionUtil()Deprecated.
-
-
Method Details
-
isJavaBeanCompliantSetter
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
-
isInheritable
Deprecated. -
checkParams
Deprecated. -
isSameSignature
Deprecated. -
isTypeCompatible
Deprecated. -
containsSameMethodSignature
Deprecated. -
containsSameFieldName
Deprecated.
-