Uses of Interface
cdc.validation.checkers.Checker
-
Packages that use Checker Package Description cdc.validation cdc.validation.checkers cdc.validation.checkers.defaults -
-
Uses of Checker in cdc.validation
Methods in cdc.validation that return Checker Modifier and Type Method Description Checker<? super T>ValidatorImpl. getChecker(Validity validity)Methods in cdc.validation with parameters of type Checker Modifier and Type Method Description static ValidatorImpl<?>ValidatorImpl. createUnchecked(Checker<?> error, Checker<?> warning)Constructors in cdc.validation with parameters of type Checker Constructor Description ValidatorImpl(Class<T> valueClass, Checker<? super T> error, Checker<? super T> warning) -
Uses of Checker in cdc.validation.checkers
Classes in cdc.validation.checkers that implement Checker Modifier and Type Class Description classRawRefCheckerclassRefChecker<T>Checker that lazily delegates its task to a named checker.Methods in cdc.validation.checkers that return Checker Modifier and Type Method Description default <S> Checker<S>Checker. after(Converter<S,? extends T> converter)Creates a checkers that checks that a value is convertible from a source type to a target type, then matches a checker of the target type.default <S> Checker<S>Checker. after(Function<S,? extends T> function, Class<S> sourceClass)Creates a checkers that checks that a value is convertible from a source type to a target type, then matches a checker of the target type.default Checker<?>Checker. afterRaw(Converter<?,?> converter)default Checker<T>Checker. and(Checker<? super T> other)Returns a checker that is the logical AND composition of this checker with another one.default Checker<T>Checker. andRaw(Checker<?> other)default Checker<T>Checker. cast(Checker<?> other)default <V> Checker<V>Checker. cast(Class<V> cls)static <S> Checker<S>Checker. fromConverter(Converter<S,?> converter)Creates a checker from a converter.static <S,T>
Checker<S>Checker. fromFunction(Function<S,?> function, Class<S> sourceClass, Class<T> targetClass)Creates a checker from a function.(package private) static <S> Checker<S>CheckerSupport. fromFunctionUnchecked(Function<S,?> function, Class<S> sourceClass, Class<?> targetClass)static <T> Checker<? super T>Checkers. getChecker(Class<T> valueClass, String name, cdc.util.lang.FailureReaction reaction)static Checker<?>Checkers. getChecker(String name)static Checker<?>Checkers. getChecker(String name, cdc.util.lang.FailureReaction reaction)Checker<?>RawRefChecker. getDelegate()Checker<? super T>RefChecker. getDelegate()default Checker<T>Checker. negate()default Checker<T>Checker. or(Checker<? super T> other)Returns a checker that is the logical OR composition of this checker with another one.default Checker<T>Checker. orRaw(Checker<?> other)Methods in cdc.validation.checkers with parameters of type Checker Modifier and Type Method Description default Checker<T>Checker. and(Checker<? super T> other)Returns a checker that is the logical AND composition of this checker with another one.default Checker<T>Checker. andRaw(Checker<?> other)default Checker<T>Checker. cast(Checker<?> other)default Checker<T>Checker. or(Checker<? super T> other)Returns a checker that is the logical OR composition of this checker with another one.default Checker<T>Checker. orRaw(Checker<?> other)static voidCheckers. register(Checker<?> checker, String name)Register a checker with a name. -
Uses of Checker in cdc.validation.checkers.defaults
Classes in cdc.validation.checkers.defaults that implement Checker Modifier and Type Class Description classAbstractStringCheckerclassHasNoDoubleSpacesclassHasNoInnerSpacesclassHasNoOuterSpacesclassHasNoSpacesclassIsConvertibleUsing<T>classIsExistingDirectoryclassIsExistingFileclassIsGreaterOrEqual<T extends Comparable<T>>classIsGreaterThan<T extends Comparable<T>>classIsInRange<T extends Comparable<T>>classIsInstanceOfclassIsLessOrEqual<T extends Comparable<T>>classIsLessThan<T extends Comparable<T>>classIsNotNullclassIsPatternclassIsXml10StringclassLengthIsInRangeCheck that the length of string is in a given range.classMatchesPatternMethods in cdc.validation.checkers.defaults with parameters of type Checker Modifier and Type Method Description static StringComparablesSupport. valueInfo(String name, Checker<?> checker)
-