Uses of Class
util.AbstractChecker
Packages that use AbstractChecker
Package
Description
-
Uses of AbstractChecker in specialized_checkers
Subclasses of AbstractChecker in specialized_checkersModifier and TypeClassDescriptionclass
CheckerColor is a specialized checker for validating and performing assertions onColor
values.class
CheckerCurrency is a specialized checker for validating and performing assertions onCurrency
values.class
CheckerString is a specialized checker for validating and performing assertions on String values. -
Uses of AbstractChecker in specialized_checkers.collection
Subclasses of AbstractChecker in specialized_checkers.collectionModifier and TypeClassDescriptionclass
CheckerGraph<N,
E extends Number> A specialized checker for validating properties and constraints on graph data structures.class
CheckerList<T>
A specialized checker forList
collections, providing fluent API methods to perform various checks and validations on lists.class
CheckerMap<K,
V> A specialized checker forMap
instances, providing fluent assertion methods for validating map properties and contents.class
CheckerSet<T>
A specialized checker forSet
collections, providing fluent assertion methods for validating set properties and contents.class
CheckerTree<T>
A specialized checker forTree
data structures, providing a fluent API to assert various properties and invariants about a tree. -
Uses of AbstractChecker in specialized_checkers.io
Subclasses of AbstractChecker in specialized_checkers.ioModifier and TypeClassDescriptionclass
CheckerFile
provides a fluent API for performing various checks and validations onFile
objects.class
CheckerJson is a specialized checker for validating properties and structure of JSON data represented by Jackson'sJsonNode
.class
A specialized checker forURI
objects, providing fluent validation methods for various URI components such as scheme, host, port, authority, fragment, path, and query. -
Uses of AbstractChecker in specialized_checkers.lambda
Subclasses of AbstractChecker in specialized_checkers.lambdaModifier and TypeClassDescriptionclass
CheckerBiConsumer<T,
U> A specialized checker forBiConsumer
instances, providing fluent API methods to assert various behaviors and properties of a BiConsumer, such as exception safety, input modification, and no-op behavior.class
CheckerBiFunction<T,
U, R> A specialized checker forBiFunction
instances, providing a fluent API for validating the behavior of aBiFunction<T, U, R>
.class
CheckerBiPredicate<T,
U> A specialized checker forBiPredicate
instances, providing a fluent API to verify their behavior with optional deep cloning of input arguments.class
A specialized checker forCallable
instances, providing fluent assertions for validating the behavior and results ofCallable
tasks.class
A specialized checker forConsumer
instances, providing fluent assertions for verifying the behavior of Consumer operations.class
CheckerFunction<T,
R> A specialized checker forFunction
instances, providing a fluent API for validating function behavior and results.class
A specialized checker forPredicate
instances, providing a fluent API for validating function behavior and results.class
A specialized checker forRunnable
instances, providing a fluent API for validating function behavior and results.class
A specialized checker forSupplier
instances, providing a fluent API for validating function behavior and results. -
Uses of AbstractChecker in specialized_checkers.math
Subclasses of AbstractChecker in specialized_checkers.mathModifier and TypeClassDescriptionclass
CheckerArray<T>
Checker for array instances, providing fluent validation methods for arrays of any reference type.class
CheckerMatrix<T extends Number>
Checker for matrix (2D array) instances, providing fluent validation methods for matrices of any numeric type.class
Checker forPolygon
instances, providing fluent validation methods for 2D polygon objects. -
Uses of AbstractChecker in specialized_checkers.math.numbers.bigTypes
Subclasses of AbstractChecker in specialized_checkers.math.numbers.bigTypesModifier and TypeClassDescriptionclass
Checker forBigDecimal
instances, providing fluent validation methods for arbitrary-precision decimal numbers.class
Checker forBigInteger
instances, providing fluent validation methods for arbitrary-precision integer numbers. -
Uses of AbstractChecker in specialized_checkers.math.numbers.decimalTypes
Subclasses of AbstractChecker in specialized_checkers.math.numbers.decimalTypes -
Uses of AbstractChecker in specialized_checkers.math.numbers.integerTypes
Subclasses of AbstractChecker in specialized_checkers.math.numbers.integerTypes -
Uses of AbstractChecker in specialized_checkers.time
Subclasses of AbstractChecker in specialized_checkers.time -
Uses of AbstractChecker in specialized_checkers.time.temporal
Subclasses of AbstractChecker in specialized_checkers.time.temporalModifier and TypeClassDescriptionclass
CheckerDate is a specialized checker for validating and performing assertions onDate
values.class
CheckerLocalDate is a specialized checker for validating and performing assertions onLocalDate
values.class
CheckerLocalDateTime is a specialized checker for validating and performing assertions onLocalDateTime
values.class
CheckerLocalTime is a specialized checker for validating and performing assertions onLocalTime
values. -
Uses of AbstractChecker in util
Classes in util with type parameters of type AbstractCheckerModifier and TypeClassDescriptionclass
AbstractChecker<T,
C extends AbstractChecker<T, C>> Abstract base class for implementing checkers that validate objects of type T.Subclasses of AbstractChecker in utilModifier and TypeClassDescriptionclass
Main entry point for object validation and type checking.Classes in util that implement interfaces with type arguments of type AbstractCheckerModifier and TypeClassDescriptionclass
AbstractChecker<T,
C extends AbstractChecker<T, C>> Abstract base class for implementing checkers that validate objects of type T.Fields in util declared as AbstractCheckerModifier and TypeFieldDescriptionprotected AbstractChecker
<T, C> AbstractChecker.backObject
The parent checker of the object being checked.