Uses of Class
util.Checker
Packages that use Checker
-
Uses of Checker in util
Modifier and TypeClassDescriptionclass
Main entry point for object validation and type checking.Modifier and TypeMethodDescriptionstatic Checker
Creates a Checker for the given object with a default name.static Checker
Creates a Checker for the given object and name.AbstractChecker.checkProperty
(String propertyPath, Object... args) Caution: Be careful with class types when using this method.Ensures that the methods are invoked using the desired classes.AbstractChecker.checkProperty
(String propertyPath, Map<String, Object> args) Checks a property or method using a map of named arguments.AbstractChecker.end()
Ends the current checker and returns the previous checker in the chain.Checker.isCollection()
Checks if the object is a Collection.<T> Checker
Checker.isInstance
(Class<T> clazz) Checks if the object is an instance of the given class.Checker.isNumber()
Checks if the object is a Number.protected Checker
Checker.self()
Returns this Checker instance (for fluent API).