java.lang.Object
dev.metaschema.core.configuration.AbstractConfigurationFeature<V>
dev.metaschema.core.model.constraint.ValidationFeature<V>
- Type Parameters:
V- the Java type of the configuration value
- All Implemented Interfaces:
IConfigurationFeature<V>
A set of configurable features that adjust Metaschema constraint validation
behavior.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ValidationFeature<Integer>The number of threads to use for parallel constraint validation.static final ValidationFeature<Boolean>If enabled, throw an exception when an error occurs.static final ValidationFeature<Boolean>If enabled, generate findings for passing constraints. -
Method Summary
Methods inherited from class dev.metaschema.core.configuration.AbstractConfigurationFeature
getDefault, getName, getValueClass, toString
-
Field Details
-
VALIDATE_GENERATE_PASS_FINDINGS
If enabled, generate findings for passing constraints. -
THROW_EXCEPTION_ON_ERROR
If enabled, throw an exception when an error occurs. -
PARALLEL_THREADS
The number of threads to use for parallel constraint validation.A value of 1 (the default) means sequential validation. Values greater than 1 enable experimental parallel validation with the specified number of threads.
Warning: Parallel validation is an experimental feature. Results should be verified against sequential validation.
-