Schnittstelle StoringRequestable<E>
- Typparameter:
E- is the type of the elements aStoringRequestable.
- Alle bekannten Unterschnittstellen:
IArrayList<E>,ICachingContainer<E>,IContainer<E>,ILinkedList<E>,IMatrix<E>
- Alle bekannten Implementierungsklassen:
ArrayList,ArrayView,CachingContainer,Container,ContainerView,ContainerView,GapMatrix,ImmutableList,IterableView,LinkedList,Matrix,MatrixColumn,MatrixRow,MultiContainerView
public interface StoringRequestable<E>
- Version:
- 2023-10-14
- Autor:
- Silvan Wyss
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungbooleanbooleancontainsAll(Iterable<?> objects) booleancontainsAll(Object[] objects) booleancontainsAll(Object object, Object... objects) booleancontainsAny(Object object, Object... objects) booleancontainsAny(Predicate<E> selector) booleancontainsAnyOf(Iterable<?> elements) booleancontainsAnyOf(Object[] objects) booleancontainsAsManyAs(Iterable<?> container) booleancontainsEqualing(Object element) booleancontainsExactlyEqualingInSameOrder(Iterable<?> iterable) booleancontainsExactlyInSameOrder(Iterable<?> iterable) booleancontainsLessThan(Iterable<?> container) booleancontainsMoreThan(Iterable<?> container) booleancontainsNone(Object element, Object... elements) booleancontainsNone(Predicate<E> selector) booleancontainsNoneOf(Iterable<?> elements) booleancontainsOnce(Object element) booleanbooleancontainsOne(Predicate<E> selector) booleancontainsOneEqualing(E element) booleancontainsOnly(Predicate<E> selector)
-
Methodendetails
-
contains
- Parameter:
object-- Gibt zurück:
- true if the current
StoringRequestablecontains the given object.
-
containsAll
- Parameter:
object-objects-- Gibt zurück:
- true if the current
StoringRequestablecontains the given object and all of the given objects. - Löst aus:
RuntimeException- if the given objects is null.
-
containsAll
- Parameter:
objects-- Gibt zurück:
- true if the current
StoringRequestablecontains all of the given objects. - Löst aus:
RuntimeException- if the given objects is null.
-
containsAll
- Parameter:
objects-- Gibt zurück:
- true if the current
StoringRequestablecontains all of the given objects.
-
containsAny
- Parameter:
selector-- Gibt zurück:
- true if the current
StoringRequestablecontains an element the given selector selects.
-
containsAny
- Parameter:
object-objects-- Gibt zurück:
- true if the current
StoringRequestablecontains the given object or one of the given objects.
-
containsAnyOf
- Parameter:
elements-- Gibt zurück:
- true if the current
StoringRequestablecontains any of the given objects.
-
containsAnyOf
- Parameter:
objects-- Gibt zurück:
- true if the current
StoringRequestablecontains any of the given objects.
-
containsAsManyAs
- Parameter:
container-- Gibt zurück:
- true if the current
StoringRequestablecontains as many elements as the given container.
-
containsEqualing
- Parameter:
element-- Gibt zurück:
- true if the current
StoringRequestablecontains an element that equals the given given element.
-
containsExactlyEqualingInSameOrder
- Parameter:
iterable-- Gibt zurück:
- true if the current
StoringRequestablecontains exactly elements that equal the elements of given iterable in the same order like the given iterable, false otherwise.
-
containsExactlyInSameOrder
- Parameter:
iterable-- Gibt zurück:
- true if the current
StoringRequestablecontains exactly the elements of the given iterable in the same order like the given iterable, false otherwise.
-
containsLessThan
- Parameter:
container-- Gibt zurück:
- true if the current
StoringRequestablecontains less elements than the given container.
-
containsMoreThan
- Parameter:
container-- Gibt zurück:
- true if the current
StoringRequestablecontains more elements than the given container.
-
containsNone
- Parameter:
selector-- Gibt zurück:
- true if the current
StoringRequestabledoes not contain an element the given selector selects.
-
containsNone
- Parameter:
element-elements-- Gibt zurück:
- true if the current
StoringRequestabledoes not contain the given element and none of the given elements.
-
containsNoneOf
- Parameter:
elements-- Gibt zurück:
- true if the current
StoringRequestabledoes not contain any element of the given elements.
-
containsOnce
- Parameter:
element-- Gibt zurück:
- true if the current
StoringRequestablecontains the given element exactly 1 time, false otherwise.
-
containsOne
boolean containsOne()- Gibt zurück:
- true if the current
StoringRequestablecontains exactly 1 element.
-
containsOne
- Parameter:
selector-- Gibt zurück:
- true if the current
StoringRequestablecontains exactly 1 element the given selector selects.
-
containsOneEqualing
- Parameter:
element-- Gibt zurück:
- true if the current
StoringRequestablecontains exactly 1 element that equals the given element.
-
containsOnly
- Parameter:
selector-- Gibt zurück:
- true if the current
StoringRequestablecontains only elements the given selector selects.
-