| Package | Description |
|---|---|
| fluent.validation |
| Modifier and Type | Method and Description |
|---|---|
static <F,T> Transformation<F,T> |
Transformation.dontTransformNull(Transformation<F,T> transformation) |
| Modifier and Type | Method and Description |
|---|---|
static <D,V> Check<D> |
BasicChecks.compose(String name,
Transformation<? super D,V> transformation,
Check<? super V> check)
Convenient composition using transformation of the original object, and check on the result.
|
static <D,V> Check<D> |
BasicChecks.compose(Transformation<? super D,V> transformation,
Check<? super V> check)
Simplified composition using transformation of the original object, and check on the result.
|
static <F,T> Transformation<F,T> |
Transformation.dontTransformNull(Transformation<F,T> transformation) |
static <D,V> TransformationBuilder<V,Check<D>> |
BasicChecks.has(String name,
Transformation<? super D,V> transformation) |
static <D,V> TransformationBuilder<V,Check<D>> |
BasicChecks.has(Transformation<? super D,V> transformation) |
default <U> TransformationBuilder<U,R> |
TransformationBuilder.having(String name,
Transformation<V,U> transformation)
Chain additional transformation, ending up with null safe chaining.
|
default <U> TransformationBuilder<U,R> |
TransformationBuilder.having(Transformation<V,U> transformation)
Chain additional transformation, ending up with null safe chaining.
|
static <V> Check<ResultSetMetaData> |
DatabaseChecks.metadataCheck(String name,
Transformation<ResultSetMetaData,V> function,
Check<? super V> check) |
static <D,V> TransformationBuilder<V,Check<D>> |
BasicChecks.nullableHas(String name,
Transformation<? super D,V> transformation) |
static <D,V> TransformationBuilder<V,Check<D>> |
BasicChecks.nullableHas(Transformation<? super D,V> transformation) |
static <R> Check<ResultSet> |
DatabaseChecks.sqlCheck(int position,
Transformation<ResultSet,R> function,
Check<? super R> check) |
static <R> Check<ResultSet> |
DatabaseChecks.sqlCheck(String name,
Transformation<ResultSet,R> function,
Check<? super R> check) |
static <D,V> Check<D> |
BasicChecks.transform(Transformation<? super D,V> transformation,
Check<? super V> check)
Lowest level transformation.
|
<V> TransformationBuilder<V,L> |
AbstractCheckDsl.withField(String name,
Transformation<? super D,V> transformation) |
<V> TransformationBuilder<V,L> |
AbstractCheckDsl.withField(Transformation<? super D,V> transformation) |
Copyright © 2021. All rights reserved.