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 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.
-
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.
-