Creates a new instance of this validator with an independent configuration.
the application configuration
the configuration to use for new validators
Creates a new instance of this validator with an independent configuration.
the application configuration
the factory to copy
Protected
Readonly
contextProtected
Readonly
scopeStatic
Readonly
INTERNALA validator factory that creates validators to check the arguments of validation methods.
Validates the state of an unknown value or a value that does not have a specialized validator.
The returned validator captures exceptions on validation failure rather than throwing them immediately. The exceptions are converted into an AssertionError and can be retrieved or thrown once the validation completes. Exceptions unrelated to validation failures are thrown immediately.
the value
Optional
name: stringthe name of the value
validator for the value
Validates the state of an array.
The returned validator captures exceptions on validation failure rather than throwing them immediately. The exceptions are converted into an AssertionError and can be retrieved or thrown once the validation completes. Exceptions unrelated to validation failures are thrown immediately.
the type the value
the type elements in the array
the value
Optional
name: stringthe name of the value
validator for the value
Validates the state of a boolean.
The returned validator captures exceptions on validation failure rather than throwing them immediately. The exceptions are converted into an AssertionError and can be retrieved or thrown once the validation completes. Exceptions unrelated to validation failures are thrown immediately.
the value
Optional
name: stringthe name of the value
validator for the value
Validates the state of a map.
The returned validator captures exceptions on validation failure rather than throwing them immediately. The exceptions are converted into an AssertionError and can be retrieved or thrown once the validation completes. Exceptions unrelated to validation failures are thrown immediately.
the value
Optional
name: stringthe name of the value
validator for the value
Validates the state of a number.
The returned validator captures exceptions on validation failure rather than throwing them immediately. The exceptions are converted into an AssertionError and can be retrieved or thrown once the validation completes. Exceptions unrelated to validation failures are thrown immediately.
the value
Optional
name: stringthe name of the value
validator for the value
Validates the state of a set.
The returned validator captures exceptions on validation failure rather than throwing them immediately. The exceptions are converted into an AssertionError and can be retrieved or thrown once the validation completes. Exceptions unrelated to validation failures are thrown immediately.
the value
Optional
name: stringthe name of the value
validator for the value
Validates the state of a string.
The returned validator captures exceptions on validation failure rather than throwing them immediately. The exceptions are converted into an AssertionError and can be retrieved or thrown once the validation completes. Exceptions unrelated to validation failures are thrown immediately.
the value
Optional
name: stringthe name of the value
validator for the value
Validates the state of an unknown value or a value that does not have a specialized validator.
The returned validator throws an error immediately if a validation fails.
the value
Optional
name: stringthe name of the value
validator for the value
Validates the state of an array.
The returned validator throws an error immediately if a validation fails.
the type the value
the type elements in the array
the value
Optional
name: stringthe name of the value
validator for the value
Validates the state of a boolean.
The returned validator throws an error immediately if a validation fails.
the value
Optional
name: stringthe name of the value
validator for the value
Validates the state of a map.
The returned validator throws an error immediately if a validation fails.
the value
Optional
name: stringthe name of the value
validator for the value
Validates the state of a number.
The returned validator throws an error immediately if a validation fails.
the value
Optional
name: stringthe name of the value
validator for the value
Validates the state of a set.
The returned validator throws an error immediately if a validation fails.
the value
Optional
name: stringthe name of the value
validator for the value
Validates the state of a string.
The returned validator throws an error immediately if a validation fails.
the value
Optional
name: stringthe name of the value
validator for the value
Returns a new factory instance with an independent configuration. This method is commonly used to inherit and update contextual information from the original factory before passing it into a nested operation. For example,
JavascriptValidators copy = validators.copy();
copy.getContext().put(json.toString(), "json");
nestedOperation(copy);
a copy of this factory
Protected
getReturns the configuration for assertThat
factory methods.
the configuration for assertThat
factory methods
Protected
getReturns the configuration for checkIf
factory methods.
the configuration for checkIf
factory methods
Returns the contextual information inherited by validators created out by this factory. The contextual
information is a map of key-value pairs that can provide more details about validation failures. For
example, if the message is "Password may not be empty" and the map contains the key-value pair
{"username": "john.smith"}
, the error message would be:
Password may not be empty
username: john.smith
an unmodifiable map from each entry's name to its value
Returns the global configuration shared by all validators.
NOTE: Updating this configuration affects existing and new validators.
the global configuration updater
the application configuration
Removes the contextual information of validators created by this factory.
the parameter name
this
Validates the state of an unknown value or a value that does not have a specialized validator.
The returned validator throws an error immediately if a validation fails.
the value
the name of the value
a validator for the value
Validates the state of an array.
The returned validator throws an error immediately if a validation fails.
the type the value
the type elements in the array
the value
the name of the value
a validator for the value
Validates the state of a boolean.
The returned validator throws an error immediately if a validation fails.
the value
the name of the value
a validator for the value
Validates the state of a map.
The returned validator throws an error immediately if a validation fails.
the value
the name of the value
a validator for the value
Validates the state of a number.
The returned validator throws an error immediately if a validation fails.
the value
the name of the value
a validator for the value
Validates the state of a set.
The returned validator throws an error immediately if a validation fails.
the value
the name of the value
a validator for the value
Validates the state of a string.
The returned validator throws an error immediately if a validation fails.
the value
the name of the value
a validator for the value
Set the configuration used by new validators.
the updated configuration
Sets the contextual information for validators created by this factory.
This method adds contextual information to error messages. The contextual information is stored as key-value pairs in a map. Values set by this method may be overridden by ValidatorComponent.withContext.
the value of the entry
the name of an entry
this
The default implementation of JavascriptValidators.