Uses of Class
specialized_checkers.collection.CheckerList
Packages that use CheckerList
-
Uses of CheckerList in specialized_checkers.collection
Subclasses with type arguments of type CheckerList in specialized_checkers.collectionModifier and TypeClassDescriptionclass
CheckerList<T>
A specialized checker forList
collections, providing fluent API methods to perform various checks and validations on lists.Methods in 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 util
Methods in util that return CheckerListModifier and TypeMethodDescriptionCheckerList
<?> Checker.isList()
Checks if the object is a List and returns a CheckerList for further validation.<T> CheckerList
<T> Checks if the object is a List whose elements are all instances of the given class.