Uses of Class
specialized_checkers.collection.CheckerSet
Packages that use CheckerSet
-
Uses of CheckerSet in specialized_checkers.collection
Subclasses with type arguments of type CheckerSet in specialized_checkers.collectionModifier and TypeClassDescriptionclass
CheckerSet<T>
A specialized checker forSet
collections, providing fluent assertion methods for validating set properties and contents.Methods in specialized_checkers.collection that return CheckerSetModifier and TypeMethodDescriptionChecks if all elements in the set match the given predicate.Checks if any element in the set matches the given predicate.static <T> CheckerSet
<T> Creates a CheckerSet for the given set with a default name.static <T> CheckerSet
<T> Creates a CheckerSet for the given set and assigns a custom name.CheckerSet.isEmpty()
Checks if the set is empty.CheckerSet.isSubset
(Collection<T> collection) Checks if the set is a subset of the given collection.CheckerSet.isSufficientPercentage
(Predicate<T> matching, double percentage) Checks if at least the specified percentage of elements in the set match the given predicate.CheckerSet.isSuperset
(Collection<T> collection) Checks if the set is a superset of the given collection.protected CheckerSet
<T> CheckerSet.self()
Returns this instance (for fluent API). -
Uses of CheckerSet in util
Methods in util that return CheckerSetModifier and TypeMethodDescriptionCheckerSet
<?> Checker.isSet()
Checks if the object is a Set and returns a CheckerSet for further validation.<T> CheckerSet
<T> Checks if the object is a Set whose elements are all instances of the given class.