Uses of Class
com.luchersol.core.specialized_checkers.collection.CheckerList
Packages that use CheckerList
Package
Description
Specialized checkers for Java collection types.
Core utility classes and base abstractions for the Checker framework.
-
Uses of CheckerList in com.luchersol.core.specialized_checkers.collection
Subclasses with type arguments of type CheckerList in com.luchersol.core.specialized_checkers.collectionModifier and TypeClassDescriptionclassCheckerList<T>A specialized checker forListcollections, providing fluent API methods to perform various checks and validations on lists.Methods in com.luchersol.core.specialized_checkers.collection that return CheckerListModifier and TypeMethodDescriptionCheckerList.allDistinct()Checks if all elements in the list are distinct.Checks if all elements in the list match the given predicate.Checks if any element in the list matches the given predicate.static <T> CheckerList<T> Creates a CheckerList for the given list with a default name.static <T> CheckerList<T> Creates a CheckerList for the given list and assigns a custom name.CheckerList.isEmpty()Checks if the list is empty.CheckerList.isSubset(Collection<T> collection) Checks if the list is a subset of the given collection.CheckerList.isSufficientPercentage(Predicate<T> matching, double percentage) Checks if at least the specified percentage of elements in the list match the given predicate.CheckerList.isSuperset(Collection<T> collection) Checks if the list is a superset of the given collection.protected CheckerList<T> CheckerList.self()Returns this instance (for fluent API). -
Uses of CheckerList in com.luchersol.core.util
Methods in com.luchersol.core.util that return CheckerListModifier and TypeMethodDescriptionCheckerList<?> Checker.isList()Checks if the object is a List and returns a CheckerList for further validation.<C> CheckerList<C> Checks if the object is a List whose elements are all instances of the given class.