Uses of Class
org.apache.juneau.reflect.ExecutableInfo
Packages that use ExecutableInfo
-
Uses of ExecutableInfo in org.apache.juneau.cp
Methods in org.apache.juneau.cp with parameters of type ExecutableInfoModifier and TypeMethodDescriptionBeanStore.getMissingParams
(ExecutableInfo executable) Given an executable, returns a list of types that are missing from this factory.Object[]
BeanStore.getParams
(ExecutableInfo executable) Returns the corresponding beans in this factory for the specified param types.boolean
BeanStore.hasAllParams
(ExecutableInfo executable) Given the list of param types, returnstrue if this factory has all the parameters for the specified executable. -
Uses of ExecutableInfo in org.apache.juneau.reflect
Subclasses of ExecutableInfo in org.apache.juneau.reflectModifier and TypeClassDescriptionclass
Lightweight utility class for introspecting information about a constructor.class
Lightweight utility class for introspecting information about a method.Methods in org.apache.juneau.reflect that return ExecutableInfoModifier and TypeMethodDescriptionExecutableInfo.accessible()
Attempts to callx.setAccessible(
and quietly ignores security exceptions.true )ExecutableInfo.forEachParam
(Predicate<ParamInfo> filter, Consumer<ParamInfo> action) Performs an action on every parameter that matches the specified filter.final <A extends Annotation>
ExecutableInfoExecutableInfo.forEachParameterAnnotation
(int index, Class<A> type, Predicate<A> predicate, Consumer<A> consumer) Performs an action on all matching parameter annotations at the specified parameter index.Constructors in org.apache.juneau.reflect with parameters of type ExecutableInfoModifierConstructorDescriptionprotected
ParamInfo
(ExecutableInfo eInfo, Parameter p, int index) Constructor.