Uses of Class
org.apache.juneau.reflect.ConstructorInfo
Packages that use ConstructorInfo
-
Uses of ConstructorInfo in org.apache.juneau
Fields in org.apache.juneau declared as ConstructorInfoModifier and TypeFieldDescriptionprotected final ConstructorInfo
BeanMeta.constructor
The constructor for this bean.Methods in org.apache.juneau that return ConstructorInfoModifier and TypeMethodDescriptionClassMeta.getConstructor()
Returns the no-arg constructor for this class.ClassMeta.getImplClassConstructor
(Visibility conVis) Returns the no-arg constructor for this class based on theMarshalled.implClass()
value.Constructors in org.apache.juneau with parameters of type ConstructorInfoModifierConstructorDescriptionprotected
BeanMeta
(ClassMeta<T> classMeta, BeanContext ctx, BeanFilter beanFilter, String[] pNames, ConstructorInfo implClassConstructor) Constructor. -
Uses of ConstructorInfo in org.apache.juneau.http
Methods in org.apache.juneau.http that return types with arguments of type ConstructorInfoModifier and TypeMethodDescriptionstatic Optional<ConstructorInfo>
HttpParts.getConstructor
(ClassMeta<?> type) Returns the constructor for the specified type. -
Uses of ConstructorInfo in org.apache.juneau.reflect
Methods in org.apache.juneau.reflect that return ConstructorInfoModifier and TypeMethodDescriptionConstructorInfo.accept
(Predicate<ConstructorInfo> test, Consumer<ConstructorInfo> action) Performs an action on this object if the specified predicate test passes.ConstructorInfo.accessible()
ConstructorInfo.accessible
(Visibility v) Makes constructor accessible if it matches the visibility requirements, or returnsnull if it doesn't.ParamInfo.getConstructor()
Returns the constructor that this parameter belongs to.ClassInfo.getDeclaredConstructor
(Predicate<ConstructorInfo> filter) Returns the first matching declared constructor on this class.ClassInfo.getNoArgConstructor
(Visibility v) Locates the no-arg constructor for this class.ClassInfo.getPublicConstructor
(Predicate<ConstructorInfo> filter) Returns the first matching public constructor on this class.static ConstructorInfo
ConstructorInfo.of
(Constructor<?> c) Convenience method for instantiating aConstructorInfo
;static ConstructorInfo
ConstructorInfo.of
(ClassInfo declaringClass, Constructor<?> c) Convenience method for instantiating aConstructorInfo
;Methods in org.apache.juneau.reflect that return types with arguments of type ConstructorInfoModifier and TypeMethodDescriptionClassInfo.getDeclaredConstructors()
Returns all the constructors defined on this class.ClassInfo.getPublicConstructors()
Returns all the public constructors defined on this class.Methods in org.apache.juneau.reflect with parameters of type ConstructorInfoMethod parameters in org.apache.juneau.reflect with type arguments of type ConstructorInfoModifier and TypeMethodDescriptionConstructorInfo.accept
(Predicate<ConstructorInfo> test, Consumer<ConstructorInfo> action) Performs an action on this object if the specified predicate test passes.ConstructorInfo.accept
(Predicate<ConstructorInfo> test, Consumer<ConstructorInfo> action) Performs an action on this object if the specified predicate test passes.ClassInfo.forEachDeclaredConstructor
(Predicate<ConstructorInfo> filter, Consumer<ConstructorInfo> action) Performs an action on all matching declared constructors on this class.ClassInfo.forEachDeclaredConstructor
(Predicate<ConstructorInfo> filter, Consumer<ConstructorInfo> action) Performs an action on all matching declared constructors on this class.ClassInfo.forEachPublicConstructor
(Predicate<ConstructorInfo> filter, Consumer<ConstructorInfo> action) Performs an action on all matching public constructors on this class.ClassInfo.forEachPublicConstructor
(Predicate<ConstructorInfo> filter, Consumer<ConstructorInfo> action) Performs an action on all matching public constructors on this class.ClassInfo.getDeclaredConstructor
(Predicate<ConstructorInfo> filter) Returns the first matching declared constructor on this class.ClassInfo.getPublicConstructor
(Predicate<ConstructorInfo> filter) Returns the first matching public constructor on this class.boolean
ConstructorInfo.matches
(Predicate<ConstructorInfo> test) Returnstrue if this object passes the specified predicate test.