Schnittstelle ICountingContainer<E>

Typparameter:
E - is the type of the elements a ICountingContainer.
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 ICountingContainer<E>
Version:
2024-11-26
Autor:
Silvan Wyss
  • Methodendetails

    • getCount

      int getCount()
      Gibt zurück:
      the number of elements of the current ICountingContainer.
    • getCount

      int getCount(Predicate<E> selector)
      Parameter:
      selector -
      Gibt zurück:
      the number of elements the given selector selects from the current ICountingContainer. Ignores null elements.
      Löst aus:
      RuntimeException - if the given selector is null.
    • getCountOf

      int getCountOf(Object element)
      Parameter:
      element -
      Gibt zurück:
      the number how many times the current ICountingContainer contains the given element.