addAll method

Validator<T> addAll(
  1. List<Rule<T>> rule
)

Registers a List of Rule with the Validator.

Implementation

Validator<T> addAll(List<Rule<T>> rule) {
  rulesList.addAll(rule);
  return this;
}