Klasse GlobalIterableTool
java.lang.Object
ch.nolix.core.independent.containertool.GlobalIterableTool
The
GlobalIterableTool
provides methods to handle Iterable
s.
Of the GlobalIterableTool
an instance cannot be created.- Version:
- 2017-12-16
- Autor:
- Silvan Wyss
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungstatic boolean
containsElement
(Iterable<?> iterable, Object element) static boolean
containsElementOnce
(Iterable<?> iterable, Object element) static boolean
containsEqualing
(Iterable<?> container, Object object) static int
getElementCount
(Iterable<?> container) static boolean
-
Methodendetails
-
containsElement
- Parameter:
iterable
-element
-- Gibt zurück:
- true if the given container contains the given element, false otherwise.
-
containsElementOnce
- Parameter:
iterable
-element
-- Gibt zurück:
- true if the given iterable contains the given element exactly 1 time, false otherwise.
-
containsEqualing
- Parameter:
container
-object
-- Gibt zurück:
- true if the given container contains an element that equals the given object.
-
getElementCount
- Parameter:
container
-- Gibt zurück:
- the number of elements of the given container.
-
isEmpty
- Parameter:
container
-- Gibt zurück:
- true if the given container is not empty.
-