Class ConstructorDetector
java.lang.Object
com.fasterxml.jackson.databind.cfg.ConstructorDetector
- All Implemented Interfaces:
Serializable
Configurable handler used to select aspects of selecting
constructor to use as "Creator" for POJOs.
Defines the API for handlers, a pre-defined set of standard instances
and methods for constructing alternative configurations.
- Since:
- 2.12
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumDefinition of alternate handling modes of single-argument constructors that are annotated withJsonCreatorbut without "mode" definition (or explicit name for the argument): this is the case where two interpretations are possible -- "properties" (in which case the argument is named parameter of a JSON Object) and "delegating (in which case the argument maps to the whole JSON value). -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ConstructorDetectorInstance used by default, which: UsesConstructorDetector.SingleArgConstructor.HEURISTICfor single-argument constructor case Does not require explicit@JsonCreatorannotations (so allows auto-detection of Visible constructors} (except for JDK types) Does not allow auto-detection of Visible constructors for so-called JDK types; that is, classes in packagesjava.*andjavax.*static final ConstructorDetectorInstance similar toDEFAULTexcept that for single-argument case uses setting ofConstructorDetector.SingleArgConstructor.REQUIRE_MODE.static final ConstructorDetectorInstance similar toDEFAULTexcept that for single-argument case uses setting ofConstructorDetector.SingleArgConstructor.DELEGATING.static final ConstructorDetectorInstance similar toDEFAULTexcept that for single-argument case uses setting ofConstructorDetector.SingleArgConstructor.PROPERTIES. -
Method Summary
Modifier and TypeMethodDescriptionbooleanbooleanbooleanshouldIntrospectorImplicitConstructors(Class<?> rawType) Accessor that combines checks for whether implicit creators are allowed and, if so, whether JDK type constructors are allowed (if type is JDK type) to determine whether implicit constructor detection should be enabled for given type or not.booleanbooleanwithAllowJDKTypeConstructors(boolean state) withRequireAnnotation(boolean state) withSingleArgMode(ConstructorDetector.SingleArgConstructor singleArgMode)
-
Field Details
-
DEFAULT
Instance used by default, which:- Uses
ConstructorDetector.SingleArgConstructor.HEURISTICfor single-argument constructor case - Does not require explicit
@JsonCreatorannotations (so allows auto-detection of Visible constructors} (except for JDK types) - Does not allow auto-detection of Visible constructors for so-called JDK
types; that is, classes in packages
java.*andjavax.*
- Uses
-
USE_PROPERTIES_BASED
Instance similar toDEFAULTexcept that for single-argument case uses setting ofConstructorDetector.SingleArgConstructor.PROPERTIES. -
USE_DELEGATING
Instance similar toDEFAULTexcept that for single-argument case uses setting ofConstructorDetector.SingleArgConstructor.DELEGATING. -
EXPLICIT_ONLY
Instance similar toDEFAULTexcept that for single-argument case uses setting ofConstructorDetector.SingleArgConstructor.REQUIRE_MODE.
-
-
Method Details
-
withSingleArgMode
public ConstructorDetector withSingleArgMode(ConstructorDetector.SingleArgConstructor singleArgMode) -
withRequireAnnotation
-
withAllowJDKTypeConstructors
-
singleArgMode
-
requireCtorAnnotation
public boolean requireCtorAnnotation() -
allowJDKTypeConstructors
public boolean allowJDKTypeConstructors() -
singleArgCreatorDefaultsToDelegating
public boolean singleArgCreatorDefaultsToDelegating() -
singleArgCreatorDefaultsToProperties
public boolean singleArgCreatorDefaultsToProperties() -
shouldIntrospectorImplicitConstructors
Accessor that combines checks for whether implicit creators are allowed and, if so, whether JDK type constructors are allowed (if type is JDK type) to determine whether implicit constructor detection should be enabled for given type or not.- Parameters:
rawType- Value type to consider- Returns:
- True if implicit constructor detection should be enabled; false if not
-