Package com.luchersol.core.specialized_checkers


package com.luchersol.core.specialized_checkers
Specialized checker implementations for various data types and structures.

This package provides fluent API-based validators for common Java types including strings, enums, currency values, colors, and complex mathematical structures. Each specialized checker extends the base validation framework to provide type-specific assertion methods.

Typical usage pattern uses a fluent interface for method chaining:


 CheckerString.check("value")
     .isNotEmpty()
     .minLength(5)
     .matches("[a-z]+");
 
Version:
1.0
Author:
LucherSol