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