Uses of Class
org.apache.juneau.commons.reflect.ConstructorInfo
Packages that use ConstructorInfo
Package
Description
Marshalling API
Bean and POJO Annotations
Annotation utilities for working with Java annotations.
Comprehensive reflection utilities for working with classes, methods, fields, constructors,
and annotations in a more convenient and type-safe way than the standard Java reflection APIs.
RFC2616 HTTP Headers
-
Uses of ConstructorInfo in org.apache.juneau
Methods in org.apache.juneau that return ConstructorInfoModifier and TypeMethodDescriptionprotected ConstructorInfoBeanMeta.getConstructor()Returns the constructor for this bean, if one was found.ClassMeta.getImplClassConstructor(Visibility conVis) Returns the no-arg constructor for this class based on theMarshalled.implClass()value. -
Uses of ConstructorInfo in org.apache.juneau.annotation
Methods in org.apache.juneau.annotation with parameters of type ConstructorInfoModifier and TypeMethodDescriptionBeancAnnotation.Builder.on(ConstructorInfo... value) BeanIgnoreAnnotation.Builder.on(ConstructorInfo... value) -
Uses of ConstructorInfo in org.apache.juneau.commons.annotation
Methods in org.apache.juneau.commons.annotation with parameters of type ConstructorInfoModifier and TypeMethodDescriptionAppliedAnnotationObject.BuilderC.on(ConstructorInfo... value) Appends the constructors that this annotation applies to.AppliedAnnotationObject.BuilderTMFC.on(ConstructorInfo... value) Appends the constructors that this annotation applies to. -
Uses of ConstructorInfo in org.apache.juneau.commons.reflect
Methods in org.apache.juneau.commons.reflect that return ConstructorInfoModifier and TypeMethodDescriptionConstructorInfo.accessible()ParameterInfo.getConstructor()Returns the constructor that this parameter belongs to.ClassInfo.getEnclosingConstructor()Returns theConstructorInfoobject representing the constructor that declares this class if this is a local or anonymous class declared within a constructor.static final ConstructorInfoReflectionUtils.info(Constructor<?> o) Returns theConstructorInfowrapper for the specified constructor.static ConstructorInfoConstructorInfo.of(Constructor<?> inner) Creates a ConstructorInfo wrapper for the specified constructor.static ConstructorInfoConstructorInfo.of(ClassInfo declaringClass, Constructor<?> inner) Creates a ConstructorInfo wrapper for the specified constructor.Methods in org.apache.juneau.commons.reflect that return types with arguments of type ConstructorInfoModifier and TypeMethodDescriptionClassInfo.getDeclaredConstructor(Predicate<ConstructorInfo> filter) Returns the first matching declared constructor on this class.ClassInfo.getDeclaredConstructors()Returns all the constructors defined 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.ClassInfo.getPublicConstructors()Returns all the public constructors defined on this class.Methods in org.apache.juneau.commons.reflect with parameters of type ConstructorInfoModifier and TypeMethodDescriptionintConstructorInfo.compareTo(ConstructorInfo o) <A extends Annotation>
List<AnnotationInfo<A>>AnnotationProvider.find(Class<A> type, ConstructorInfo c, AnnotationTraversal... traversals) Finds annotations from a constructor using configurable traversal options.List<AnnotationInfo<? extends Annotation>>AnnotationProvider.find(ConstructorInfo c, AnnotationTraversal... traversals) Finds all annotations from a constructor using configurable traversal options, without filtering by annotation type.<A extends Annotation>
booleanAnnotationProvider.has(Class<A> type, ConstructorInfo c, AnnotationTraversal... traversals) Checks if a constructor has the specified annotation.Method parameters in org.apache.juneau.commons.reflect with type arguments of type ConstructorInfoModifier and TypeMethodDescriptionClassInfo.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. -
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.