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>
,ISqlRecord
- Alle bekannten Implementierungsklassen:
ArrayList
,ArrayView
,CachingContainer
,Container
,ContainerView
,ContainerView
,FilterContainerView
,ImmutableList
,IterableView
,LinkedList
,Matrix
,MatrixColumn
,MatrixRow
,MultiContainerView
,SqlRecord
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<?> objects) boolean
containsAnyOf
(Object[] objects) boolean
containsAsManyAs
(Iterable<?> container) boolean
containsEqualing
(Object element) boolean
containsExactlyEqualingInSameOrder
(Iterable<?> iterable) boolean
containsExactlyInSameOrder
(Iterable<?> iterable) boolean
containsLessThan
(Iterable<?> iterable) boolean
containsMoreThan
(Iterable<?> iterable) boolean
containsNone
(Object object, Object... objects) boolean
containsNone
(Predicate<E> selector) boolean
containsNoneOf
(Iterable<?> objects) boolean
containsOnce
(Object object) boolean
boolean
containsOne
(Predicate<E> selector) boolean
containsOneEqualing
(E object) boolean
containsOnly
(Predicate<E> selector)
-
Methodendetails
-
contains
- Parameter:
object
-- Gibt zurück:
- true if the current
StoringRequestable
contains the given object, false otherwise.
-
containsAll
- Parameter:
object
-objects
-- Gibt zurück:
- true if the current
StoringRequestable
contains the given object and all of the given objects, false otherwise. - 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, false otherwise. - 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, false otherwise. - Löst aus:
RuntimeException
- if the given objects is null.
-
containsAny
- Parameter:
selector
-- Gibt zurück:
- true if the current
StoringRequestable
contains an element the given selector selects, false otherwise. Ignores null elements. - Löst aus:
RuntimeException
- if the given selector is null.
-
containsAny
- Parameter:
object
-objects
-- Gibt zurück:
- true if the current
StoringRequestable
contains the given object or one of the given objects, false otherwise. - Löst aus:
RuntimeException
- if the given objects is null.
-
containsAnyOf
- Parameter:
objects
-- Gibt zurück:
- true if the current
StoringRequestable
contains any of the given objects, false otherwise. - Löst aus:
RuntimeException
- if the given objects is null.
-
containsAnyOf
- Parameter:
objects
-- Gibt zurück:
- true if the current
StoringRequestable
contains any of the given objects, false otherwise. - Löst aus:
RuntimeException
- if the given objects is null.
-
containsAsManyAs
- Parameter:
container
-- Gibt zurück:
- true if the current
StoringRequestable
contains as many elements as the given container, false otherwise.
-
containsEqualing
- Parameter:
element
-- Gibt zurück:
- true if the current
StoringRequestable
contains an element that equals the given given element, false otherwise.
-
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, 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, false otherwise.
-
containsLessThan
- Parameter:
iterable
-- Gibt zurück:
- true if the current
StoringRequestable
contains less elements than the given container, false otherwise
-
containsMoreThan
- Parameter:
iterable
-- Gibt zurück:
- true if the current
StoringRequestable
contains more elements than the given container, false otherwise.
-
containsNone
- Parameter:
selector
-- Gibt zurück:
- true if the current
StoringRequestable
does not contain an element the given selector selects. Ignores null elements. - Löst aus:
RuntimeException
- if the given selector is null.
-
containsNone
- Parameter:
object
-objects
-- Gibt zurück:
- true if the current
StoringRequestable
does not contain the given object and none of the given objects, false otherwise. - Löst aus:
RuntimeException
- if the given objects is null.
-
containsNoneOf
- Parameter:
objects
-- Gibt zurück:
- true if the current
StoringRequestable
does not contain any of the given objects. - Löst aus:
RuntimeException
- if the given objects is null.
-
containsOnce
- Parameter:
object
-- Gibt zurück:
- true if the current
StoringRequestable
contains the given object exactly 1 time, false otherwise.
-
containsOne
boolean containsOne()- Gibt zurück:
- true if the current
StoringRequestable
contains exactly 1 element, false otherwise.
-
containsOne
- Parameter:
selector
-- Gibt zurück:
- true if the current
StoringRequestable
contains exactly 1 element the given selector selects, false otherwise. Ignores null elements. - Löst aus:
RuntimeException
- if the given selector is null.
-
containsOneEqualing
- Parameter:
object
-- Gibt zurück:
- true if the current
StoringRequestable
contains exactly 1 element that equals the given object, false otherwise.
-
containsOnly
- Parameter:
selector
-- Gibt zurück:
- true if the current
StoringRequestable
contains only elements the given selector selects. Null element are regarded as unselectable. - Löst aus:
RuntimeException
- if the given selector is null.
-