Interface IIterableContainMultipleExaminer
- All Known Subinterfaces:
IIterableExaminer
- All Known Implementing Classes:
IterableExaminer
public interface IIterableContainMultipleExaminer
- Author:
- Silvan Wyss
-
Method Summary
Modifier and TypeMethodDescriptionbooleancontainsAll(Iterable<?> iterable, Iterable<?> objects) booleancontainsAll(Iterable<?> iterable, Object... objects) booleancontainsAny(Iterable<?> iterable, Iterable<?> objects) booleancontainsAny(Iterable<?> iterable, Object... objects) booleancontainsExactlyAll(Iterable<?> iterable, Iterable<?> objects) booleancontainsExactlyAll(Iterable<?> iterable, Object... objects) booleancontainsExactlyAllEqualInSameOrder(Iterable<?> iterable, Iterable<?> objects) booleancontainsExactlyAllInSameOrder(Iterable<?> iterable, Iterable<?> objects) booleancontainsExactlyAllInSameOrder(Iterable<?> iterable, Object... objects) booleancontainsNone(Iterable<?> iterable, Iterable<?> objects) booleancontainsNone(Iterable<?> iterable, Object... objects)
-
Method Details
-
containsAll
- Parameters:
iterable- the searchedIterable, is considered to be empty when is nullobjects- the searched objects, is considered to be empty when is null- Returns:
- true if the given iterable contains all of the given objects, false otherwise
-
containsAll
- Parameters:
iterable- the searchedIterable, is considered to be empty when is nullobjects- the searched objects, is considered to be empty when is null- Returns:
- true if the given iterable contains all of the given objects, false otherwise
-
containsAny
- Parameters:
iterable- the searchedIterable, is considered to be empty when is nullobjects- the searched objects, is considered to be empty when is null- Returns:
- true if the given iterable contains any of the given objects, false otherwise
-
containsAny
- Parameters:
iterable- the searchedIterable, is considered to be empty when is nullobjects- the searched objects, is considered to be empty when is null- Returns:
- true if the given iterable contains any of the given objects, false otherwise
-
containsExactlyAll
- Parameters:
iterable- the searchedIterable, is considered to be empty when is nullobjects- the searched objects, is considered to be empty when is null- Returns:
- true if the given iterable contains exactly all the given objects, false otherwise
-
containsExactlyAll
- Parameters:
iterable- the searchedIterable, is considered to be empty when is nullobjects- the searched objects, is considered to be empty when is null- Returns:
- true if the given iterable contains exactly all the given objects, false otherwise
-
containsExactlyAllEqualInSameOrder
- Parameters:
iterable- the searchedIterable, is considered to be empty when is nullobjects- the searched for objects, is considered to be empty when is null- Returns:
- true if the given iterable contains exactly such elements that equal the given objects in the same order, false otherwise
-
containsExactlyAllInSameOrder
- Parameters:
iterable- the searchedIterable, is considered to be empty when is nullobjects- the searched for objects, is considered to be empty when is null- Returns:
- true if the given iterable contains exactly all the given objects in the same order, false otherwise
-
containsExactlyAllInSameOrder
- Parameters:
iterable- the searchedIterable, is considered to be empty when is nullobjects- the searched objects, is considered to be empty when is null- Returns:
- true if the given iterable contains exactly all the given objects in the same order, false otherwise
-
containsNone
- Parameters:
iterable- the searchedIterable, is considered to be empty when is nullobjects- the searched objects, is considered to be empty when is null- Returns:
- true if the given iterable does not contain any of the given objects, false otherwise
-
containsNone
- Parameters:
iterable- the searchedIterable, is considered to be empty when is nullobjects- the searched objects, is considered to be empty when is null- Returns:
- true if the given iterable does not contain any of the given objects, false otherwise
-