default <S> Validator<S> |
Validator.after(Converter<S,? extends T> converter) |
Creates a validator composed of this one applied after a converter.
|
default <S> Validator<S> |
Validator.after(Function<S,? extends T> function,
Class<S> sourceClass) |
Creates a validator composed of this one applied after a conversion function.
|
default Validator<?> |
Validator.afterRaw(Converter<?,?> converter) |
|
static Validator<? super String> |
Validators.getStringValidator(String name) |
|
static Validator<? super String> |
Validators.getStringValidator(String name,
cdc.util.lang.FailureReaction reaction) |
|
static <T> Validator<? super T> |
Validators.getValidator(Class<T> valueClass,
String name) |
Returns the validator that has a name and a value type.
|
static <T> Validator<? super T> |
Validators.getValidator(Class<T> valueClass,
String name,
cdc.util.lang.FailureReaction reaction) |
Returns the validator that has a name and a value type.
|
static Validator<?> |
Validators.getValidator(String name) |
Returns the validator that has a name.
|
static Validator<?> |
Validators.getValidator(String name,
cdc.util.lang.FailureReaction reaction) |
Returns the validator that has a name.
|