Package com.luchersol.core.specialized_checkers.collection
package com.luchersol.core.specialized_checkers.collection
Specialized checkers for Java collection types.
This package provides validation implementations for various collection types including Lists, Sets, Maps, and Graph structures. Each checker offers methods to validate collection properties such as size, content, ordering, and structure.
Supported collection types:
CheckerList- List validationCheckerSet- Set validationCheckerMap- Map validationCheckerGraph- Graph structure validation
- Version:
- 1.0
- Author:
- LucherSol
-
ClassesClassDescriptionCheckerGraph<N,
E extends Number> A specialized checker for validating properties and constraints on graph data structures.CheckerList<T>A specialized checker forListcollections, providing fluent API methods to perform various checks and validations on lists.CheckerMap<K,V> A specialized checker forMapinstances, providing fluent assertion methods for validating map properties and contents.CheckerSet<T>A specialized checker forSetcollections, providing fluent assertion methods for validating set properties and contents.CheckerTree<T>A specialized checker forTreedata structures, providing a fluent API to assert various properties and invariants about a tree.