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 TypMethodeBeschreibungboolean
boolean
containsAll
(Iterable<?> objects) boolean
containsAll
(Object[] objects) boolean
containsAll
(Object object, Object... objects) boolean
containsAny
(Object object, Object... objects) boolean
containsAny
(Predicate<E> selector) boolean
containsAnyOf
(Iterable<?> elements) boolean
containsAnyOf
(Object[] objects) boolean
containsAsManyAs
(Iterable<?> container) boolean
containsEqualing
(Object element) boolean
containsExactlyEqualingInSameOrder
(Iterable<?> iterable) boolean
containsExactlyInSameOrder
(Iterable<?> iterable) boolean
containsLessThan
(Iterable<?> container) boolean
containsMoreThan
(Iterable<?> container) boolean
containsNone
(Object element, Object... elements) boolean
containsNone
(Predicate<E> selector) boolean
containsNoneOf
(Iterable<?> elements) boolean
containsOnce
(Object element) boolean
boolean
containsOne
(Predicate<E> selector) boolean
containsOneEqualing
(E element) boolean
containsOnly
(Predicate<E> selector)
-
Methodendetails
-
contains
- Parameter:
object
-- Gibt zurück:
- true if the current
StoringRequestable
contains the given object.
-
containsAll
- Parameter:
object
-objects
-- Gibt zurück:
- true if the current
StoringRequestable
contains 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
StoringRequestable
contains 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
StoringRequestable
contains all of the given objects.
-
containsAny
- Parameter:
selector
-- Gibt zurück:
- true if the current
StoringRequestable
contains an element the given selector selects.
-
containsAny
- Parameter:
object
-objects
-- Gibt zurück:
- true if the current
StoringRequestable
contains the given object or one of the given objects.
-
containsAnyOf
- Parameter:
elements
-- Gibt zurück:
- true if the current
StoringRequestable
contains any of the given objects.
-
containsAnyOf
- Parameter:
objects
-- Gibt zurück:
- true if the current
StoringRequestable
contains any of the given objects.
-
containsAsManyAs
- Parameter:
container
-- Gibt zurück:
- true if the current
StoringRequestable
contains as many elements as the given container.
-
containsEqualing
- Parameter:
element
-- Gibt zurück:
- true if the current
StoringRequestable
contains an element that equals the given given element.
-
containsExactlyEqualingInSameOrder
- Parameter:
iterable
-- Gibt zurück:
- true if the current
StoringRequestable
contains 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
StoringRequestable
contains 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
StoringRequestable
contains less elements than the given container.
-
containsMoreThan
- Parameter:
container
-- Gibt zurück:
- true if the current
StoringRequestable
contains more elements than the given container.
-
containsNone
- Parameter:
selector
-- Gibt zurück:
- true if the current
StoringRequestable
does not contain an element the given selector selects.
-
containsNone
- Parameter:
element
-elements
-- Gibt zurück:
- true if the current
StoringRequestable
does not contain the given element and none of the given elements.
-
containsNoneOf
- Parameter:
elements
-- Gibt zurück:
- true if the current
StoringRequestable
does not contain any element of the given elements.
-
containsOnce
- Parameter:
element
-- Gibt zurück:
- true if the current
StoringRequestable
contains the given element exactly 1 time, false otherwise.
-
containsOne
boolean containsOne()- Gibt zurück:
- true if the current
StoringRequestable
contains exactly 1 element.
-
containsOne
- Parameter:
selector
-- Gibt zurück:
- true if the current
StoringRequestable
contains exactly 1 element the given selector selects.
-
containsOneEqualing
- Parameter:
element
-- Gibt zurück:
- true if the current
StoringRequestable
contains exactly 1 element that equals the given element.
-
containsOnly
- Parameter:
selector
-- Gibt zurück:
- true if the current
StoringRequestable
contains only elements the given selector selects.
-