Uses of Interface
io.github.mmm.validation.Validator
-
-
Uses of Validator in io.github.mmm.validation
Classes in io.github.mmm.validation that implement Validator Modifier and Type Class Description class
AbstractComposedValidator<V,C>
class
AbstractValidator<V>
This is the abstract base class allValidator
implementations should extend.class
AbstractValueValidator<V>
This is the abstract base implementation ofValidator
.class
ComposedValidator<V>
class
ProjectionValidator<V,C>
Fields in io.github.mmm.validation declared as Validator Modifier and Type Field Description protected Validator<? super C>[]
AbstractComposedValidator. children
Methods in io.github.mmm.validation that return Validator Modifier and Type Method Description <T> Validator<T>
AbstractComposedValidator. append(Validator<?> validator)
<T> Validator<T>
AbstractComposedValidator. append(Validator<?>... validators)
default <T> Validator<T>
Validator. append(Validator<?> validator)
default <T> Validator<T>
Validator. append(Validator<?>... validators)
Validator<? super C>
AbstractComposedValidator. getChild(int index)
static <T> Validator<T>
Validator. none()
Methods in io.github.mmm.validation with parameters of type Validator Modifier and Type Method Description SELF
ValidatorRegistry. add(Validator<? super V> validator)
<T> Validator<T>
AbstractComposedValidator. append(Validator<?> validator)
<T> Validator<T>
AbstractComposedValidator. append(Validator<?>... validators)
default <T> Validator<T>
Validator. append(Validator<?> validator)
default <T> Validator<T>
Validator. append(Validator<?>... validators)
static boolean
Validator. isValidating(Validator<?> validator)
Constructors in io.github.mmm.validation with parameters of type Validator Constructor Description AbstractComposedValidator(Validator<? super C>... validators)
The constructor.ComposedValidator(Validator<? super V>... validators)
The constructor.ProjectionValidator(Function<V,C> function, Validator<? super C>... validators)
The constructor.
-