Abstract
Protected
constructorthe application configuration
the validator configuration
the name of the value
the value being validated
the contextual information set by a parent validator or the user
the list of validation failures
Protected
Readonly
_configurationThe validator configuration.
Protected
Readonly
contextThe contextual information of this validator.
Protected
Readonly
failuresThe list of validation failures.
Protected
Readonly
nameThe name of the value.
Protected
Readonly
scopeThe application configuration.
Readonly
valueThe value being validated.
Adds a validation failure and throws an error if the validator is configured to throw an error on failure.
a message that explains what went wrong
creates the error associated with this failure
Protected
addFacilitates the validation of related properties. For example,
```ts requireThat(nameToFrequency, "nameToFrequency"). and(m => m.size().isPositive()). and(m => m.keySet().contains("John")); ```
Any changes made during the validation process will impact this validator.
the nested validation
this
Returns the array of failed validations.
an array of failed validations
Protected
failReturns the contextual information for upcoming validations carried out by this validator. 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
the string to prepend to the name if the name is null
the name of the value
the string to prepend to the value if the name is null
a value
the prefixed name if it is defined; otherwise, the prefixed string representation of the value
the application configuration
Returns the value that is being validated.
the fallback value to use if the value is invalid
the validated value, or defaultValue
if the value is invalid (e.g. due to dereferencing a
property of a null
value)
Ensures that the value is an instance of a class.
the desired class
a validator for an object of the desired class
Ensures that the value is not an instance of a class.
this
Ensures that the value is not null
.
This method should be used to validate method arguments that are assigned to class fields but not accessed right away (such as constructor and setter arguments). It should also be used to validate any method arguments when the validator contains additional contextual information.
this
Ensures that the value is not undefined.
This method should be used to validate method arguments that are assigned to class fields but not accessed right away (such as constructor and setter arguments). It should also be used to validate any method arguments when the validator contains additional contextual information.
this
Ensures that the value is null
.
this
Ensures that the value is undefined.
this
Protected
requireEnsures that a name does not conflict with other variable names already in use by the validator.
the name of the parameter
false
to allow the name to be used even if it conflicts with an
existing name in the validator context
the internal validator of the name
Sets the contextual information for upcoming validations.
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 override any values that are set using Validators.withContext.
There is no way to remove contextual information from a validator. Thread-level contextual information is removed automatically.
the value of the entry
the name of an entry
this
Protected
Static
Readonly
VALUE_
Validates the state of a value, recording failures without throwing an error.