- String validation
- Number validation
- Map validation
- Java 21
- Import library into your project
- Add dependecy
- Create object of class Validator
- validator.String to String validation
- validator.number to Number validation
- validator.map to Map validation
- .required() to null check
- .minLength(int length) to String length check
- .contains(String substring) to search if String contains substring
- .required() to null check
- .positive() to check if the value is positive
- .rang(int min, int max) to check if value > min and value < max
- .required() to null check
- .sizeOf(int size) to check if value size > size
- .shape(Map<String, BaseSchema> map) to integrated check