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:
AbstractContainer,AbstractExtendedContainer,ArrayContainerView,ArrayList,CachingContainer,ContainerView,FilterContainerView,ImmutableList,IntervallContainerView,IterableContainerView,LinkedList,MappingContainerView,Matrix,MatrixColumn,MatrixRow,MultiContainerView,SqlRecord
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<?> objects) booleancontainsAnyOf(Object[] objects) booleancontainsAsManyAs(Iterable<?> container) booleancontainsEqualing(Object element) booleancontainsExactlyEqualingInSameOrder(Iterable<?> iterable) booleancontainsExactlyInSameOrder(Iterable<?> iterable) booleancontainsLessThan(Iterable<?> iterable) booleancontainsMoreThan(Iterable<?> iterable) booleancontainsNone(Object object, Object... objects) booleancontainsNone(Predicate<E> selector) booleancontainsNoneOf(Iterable<?> objects) booleancontainsOnce(Object object) booleanbooleancontainsOne(Predicate<E> selector) booleancontainsOneEqualing(E object) booleancontainsOnly(Predicate<E> selector)
-
Methodendetails
-
contains
- Parameter:
object-- Gibt zurück:
- true if the current
StoringRequestablecontains the given object, false otherwise.
-
containsAll
- Parameter:
object-objects-- Gibt zurück:
- true if the current
StoringRequestablecontains 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
StoringRequestablecontains 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
StoringRequestablecontains 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
StoringRequestablecontains 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
StoringRequestablecontains 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
StoringRequestablecontains 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
StoringRequestablecontains 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
StoringRequestablecontains as many elements as the given container, false otherwise.
-
containsEqualing
- Parameter:
element-- Gibt zurück:
- true if the current
StoringRequestablecontains an element that equals the given given element, false otherwise.
-
containsExactlyEqualingInSameOrder
- Parameter:
iterable-- Gibt zurück:
- true if the current
StoringRequestablecontains 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
StoringRequestablecontains exactly the elements of the given iterable in the same order, false otherwise.
-
containsLessThan
- Parameter:
iterable-- Gibt zurück:
- true if the current
StoringRequestablecontains less elements than the given container, false otherwise
-
containsMoreThan
- Parameter:
iterable-- Gibt zurück:
- true if the current
StoringRequestablecontains more elements than the given container, false otherwise.
-
containsNone
- Parameter:
selector-- Gibt zurück:
- true if the current
StoringRequestabledoes 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
StoringRequestabledoes 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
StoringRequestabledoes 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
StoringRequestablecontains the given object exactly 1 time, false otherwise.
-
containsOne
boolean containsOne()- Gibt zurück:
- true if the current
StoringRequestablecontains exactly 1 element, false otherwise.
-
containsOne
- Parameter:
selector-- Gibt zurück:
- true if the current
StoringRequestablecontains 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
StoringRequestablecontains exactly 1 element that equals the given object, false otherwise.
-
containsOnly
- Parameter:
selector-- Gibt zurück:
- true if the current
StoringRequestablecontains only elements the given selector selects. Null element are regarded as unselectable. - Löst aus:
RuntimeException- if the given selector is null.
-