Class AnnotatedClass.Creators
- java.lang.Object
-
- com.fasterxml.jackson.databind.introspect.AnnotatedClass.Creators
-
- Enclosing class:
- AnnotatedClass
public static final class AnnotatedClass.Creators extends Object
-
-
Field Summary
Fields Modifier and Type Field Description List<AnnotatedConstructor>
constructors
Single argument constructors the class has, if any.List<AnnotatedMethod>
creatorMethods
Single argument static methods that might be usable as factory methodsAnnotatedConstructor
defaultConstructor
Default constructor of the annotated class, if it has one.
-
Constructor Summary
Constructors Constructor Description Creators(AnnotatedConstructor defCtor, List<AnnotatedConstructor> ctors, List<AnnotatedMethod> ctorMethods)
-
-
-
Field Detail
-
defaultConstructor
public final AnnotatedConstructor defaultConstructor
Default constructor of the annotated class, if it has one.
-
constructors
public final List<AnnotatedConstructor> constructors
Single argument constructors the class has, if any.
-
creatorMethods
public final List<AnnotatedMethod> creatorMethods
Single argument static methods that might be usable as factory methods
-
-
Constructor Detail
-
Creators
public Creators(AnnotatedConstructor defCtor, List<AnnotatedConstructor> ctors, List<AnnotatedMethod> ctorMethods)
-
-