Class DeserializationFeature<V>
java.lang.Object
gov.nist.secauto.metaschema.core.configuration.AbstractConfigurationFeature<V>
gov.nist.secauto.metaschema.databind.io.DeserializationFeature<V>
- All Implemented Interfaces:
IConfigurationFeature<V>
-
Field Summary
Modifier and TypeFieldDescriptionstatic final DeserializationFeature<Boolean>
If enabled, process the next JSON node as a field, whose name must match theIAssemblyDefinition.getRootJsonName()
.static final DeserializationFeature<Boolean>
If enabled, perform constraint validation on the deserialized bound objects.static final DeserializationFeature<Boolean>
If enabled, allow inline XML entities to be automatically replaced.static final int
static final DeserializationFeature<Integer>
Determines how many bytes can be looked at to identify the format of a document.static final DeserializationFeature<Integer>
Determines the max YAML codepoints that can be read.static final int
-
Method Summary
Methods inherited from class gov.nist.secauto.metaschema.core.configuration.AbstractConfigurationFeature
getDefault, getName, getValueClass, toString
-
Field Details
-
YAML_CODEPOINT_LIMIT_DEFAULT
- See Also:
-
FORMAT_DETECTION_LOOKAHEAD
- See Also:
-
DESERIALIZE_VALIDATE_CONSTRAINTS
If enabled, perform constraint validation on the deserialized bound objects. -
DESERIALIZE_XML_ALLOW_ENTITY_RESOLUTION
@NonNull public static final DeserializationFeature<Boolean> DESERIALIZE_XML_ALLOW_ENTITY_RESOLUTIONIf enabled, allow inline XML entities to be automatically replaced. -
DESERIALIZE_JSON_ROOT_PROPERTY
If enabled, process the next JSON node as a field, whose name must match theIAssemblyDefinition.getRootJsonName()
. If not enabled, the next JSON node is expected to be an object containing the data of theIAssemblyDefinition
. -
YAML_CODEPOINT_LIMIT
Determines the max YAML codepoints that can be read. -
FORMAT_DETECTION_LOOKAHEAD_LIMIT
Determines how many bytes can be looked at to identify the format of a document.
-