Schnittstelle StoringRequestable<E>

Typparameter:
E - is the type of the elements a StoringRequestable.
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
  • Methodendetails

    • contains

      boolean contains(Object object)
      Parameter:
      object -
      Gibt zurück:
      true if the current StoringRequestable contains the given object, false otherwise.
    • containsAll

      boolean containsAll(Object object, Object... objects)
      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

      boolean containsAll(Object[] objects)
      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

      boolean containsAll(Iterable<?> objects)
      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

      boolean containsAny(Predicate<E> selector)
      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

      boolean containsAny(Object object, Object... objects)
      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

      boolean containsAnyOf(Iterable<?> objects)
      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

      boolean containsAnyOf(Object[] objects)
      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

      boolean containsAsManyAs(Iterable<?> container)
      Parameter:
      container -
      Gibt zurück:
      true if the current StoringRequestable contains as many elements as the given container, false otherwise.
    • containsEqualing

      boolean containsEqualing(Object element)
      Parameter:
      element -
      Gibt zurück:
      true if the current StoringRequestable contains an element that equals the given given element, false otherwise.
    • containsExactlyEqualingInSameOrder

      boolean containsExactlyEqualingInSameOrder(Iterable<?> iterable)
      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

      boolean containsExactlyInSameOrder(Iterable<?> iterable)
      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

      boolean containsLessThan(Iterable<?> iterable)
      Parameter:
      iterable -
      Gibt zurück:
      true if the current StoringRequestable contains less elements than the given container, false otherwise
    • containsMoreThan

      boolean containsMoreThan(Iterable<?> iterable)
      Parameter:
      iterable -
      Gibt zurück:
      true if the current StoringRequestable contains more elements than the given container, false otherwise.
    • containsNone

      boolean containsNone(Predicate<E> selector)
      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

      boolean containsNone(Object object, Object... objects)
      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

      boolean containsNoneOf(Iterable<?> objects)
      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

      boolean containsOnce(Object object)
      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

      boolean containsOne(Predicate<E> selector)
      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

      boolean containsOneEqualing(E object)
      Parameter:
      object -
      Gibt zurück:
      true if the current StoringRequestable contains exactly 1 element that equals the given object, false otherwise.
    • containsOnly

      boolean containsOnly(Predicate<E> selector)
      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.