Schnittstelle Mappable<E>
- Typparameter:
E
- is the type of the elements aMappable
.
- 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 Mappable<E>
- Version:
- 2023-10-14
- Autor:
- Silvan Wyss
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibung<E2> IContainer
<E2> <E2> IContainer
<E2> toMultiples
(Function<E, IContainer<E2>> multipleMapper) <N extends Number>
IContainer<N> <E2> IContainer
<E2> toWithOneBasedIndex
(BiFunction<Integer, E, E2> mapper)
-
Methodendetails
-
to
- Typparameter:
E2
- is the type of the elements the given mapper maps from the elements of the currentMappable
.- Parameter:
mapper
-- Gibt zurück:
- a new
IContainer
with the elements the given mapper maps from the elements of the currentMappable
. - Löst aus:
RuntimeException
- if the given mapper is null.RuntimeException
- if one of the elements of the currentMappable
is null.
-
toMultiples
- Typparameter:
E2
- is the type of the elements of theIContainer
s the given multipleMapper maps from the elements of the currentMappable
.- Parameter:
multipleMapper
-- Gibt zurück:
- a new
IContainer
with the elements of theIContainer
s the given multipleMapper maps from the elements of the currentMappable
. - Löst aus:
RuntimeException
- if the given multipleMapper is null.RuntimeException
- if one of the elements of the currentMappable
is null.
-
toNumbers
- Typparameter:
N
- is the type of theNumber
s the given numberMapper maps from the elements of the currentMappable
.- Parameter:
numberMapper
-- Gibt zurück:
- a new
IContainer
with theNumber
s the given numberMapper maps from the elements of the currentMappable
. Maps null elements to 0.0. - Löst aus:
RuntimeException
- if the given numberMapper is null.
-
toStrings
IContainer<String> toStrings()- Gibt zurück:
- a new
IContainer
with theString
representations of the elements of the currentIContainer
.
-
toWithOneBasedIndex
- Typparameter:
E2
- is the type of the elements the given mapper maps from the elements of the currentMappable
and from the one-based index of these elements.- Parameter:
mapper
-- Gibt zurück:
- a new
IContainer
with the elements the given mapper maps from the elements of the currentMappable
and from the one-based index of these elements. - Löst aus:
RuntimeException
- if the given mapper is null.RuntimeException
- if one of the elements of the currentMappable
is null.
-