Uses of Class
com.luchersol.core.specialized_checkers.collection.CheckerMap
Packages that use CheckerMap
Package
Description
Specialized checkers for Java collection types.
Core utility classes and base abstractions for the Checker framework.
-
Uses of CheckerMap in com.luchersol.core.specialized_checkers.collection
Subclasses with type arguments of type CheckerMap in com.luchersol.core.specialized_checkers.collectionModifier and TypeClassDescriptionclassCheckerMap<K,V> A specialized checker forMapinstances, providing fluent assertion methods for validating map properties and contents.Methods in com.luchersol.core.specialized_checkers.collection that return CheckerMapModifier and TypeMethodDescriptionCheckerMap<K, V> CheckerMap.allMatch(BiPredicate<K, V> predicate) Checks if all entries in the map match the given bi-predicate.CheckerMap<K, V> Checks if all entries in the map match the given predicate.CheckerMap<K, V> CheckerMap.anyMatch(BiPredicate<K, V> predicate) Checks if any entry in the map matches the given bi-predicate.CheckerMap<K, V> Checks if any entry in the map matches the given predicate.static <K,V> CheckerMap <K, V> Creates a CheckerMap for the given map with a default name.static <K,V> CheckerMap <K, V> Creates a CheckerMap for the given map and assigns a custom name.CheckerMap<K, V> CheckerMap.isEmpty()Checks if the map is empty.protected CheckerMap<K, V> CheckerMap.self()Returns this instance (for fluent API). -
Uses of CheckerMap in com.luchersol.core.util
Methods in com.luchersol.core.util that return CheckerMapModifier and TypeMethodDescriptionCheckerMap<?, ?> Checker.isMap()Checks if the object is a Map and returns a CheckerMap for further validation.<K,V> CheckerMap <K, V> Checks if the object is a Map whose keys and values are instances of the given classes.