E - public interface Validator<E>
| Modifier and Type | Method and Description |
|---|---|
boolean |
isBasicValidator()
Basic validators run essential checks and are run always if validate is called.
If this method returns false and the caller of the validator respects this property, the checks will only be run if the debug or validation option is activated. |
void |
validate(E obj,
List<ValidationException> exceptions)
Validates the given object and saves all validation errors in the given list.
|
void validate(E obj, List<ValidationException> exceptions)
obj - the object to checkexceptions - the list of exceptionsboolean isBasicValidator()
Copyright © 2024 Soot OSS. All rights reserved.