Schnittstelle ICountingContainer<E>
- Typparameter:
E
- is the type of the elements aICountingContainer
.
- 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
-
Methodenübersicht
-
Methodendetails
-
getCount
int getCount()- Gibt zurück:
- the number of elements of the current
ICountingContainer
.
-
getCount
- 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
- Parameter:
element
-- Gibt zurück:
- the number how many times the current
ICountingContainer
contains the given element.
-