Interface ClassMetadataSource
-
- All Known Implementing Classes:
DefaultClassMetadataSource
public interface ClassMetadataSourceInterface that provides reflection data for a given class- Author:
- Stuart Douglas
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<Constructor<?>>getConstructors()Collection<Method>getDeclaredMethods()MethodgetMethod(String methodName, Class<?> returnType, Class<?>... parameters)
-
-
-
Method Detail
-
getDeclaredMethods
Collection<Method> getDeclaredMethods()
-
getMethod
Method getMethod(String methodName, Class<?> returnType, Class<?>... parameters) throws NoSuchMethodException
- Throws:
NoSuchMethodException
-
getConstructors
Collection<Constructor<?>> getConstructors()
-
-