Schnittstelle Mappable<E>

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

    • to

      <E2> IContainer<E2> to(Function<E,E2> mapper)
      Typparameter:
      E2 - is the type of the elements the given mapper maps from the elements of the current Mappable.
      Parameter:
      mapper -
      Gibt zurück:
      a new IContainer with the elements the given mapper maps from the elements of the current Mappable.
      Löst aus:
      RuntimeException - if the given mapper is null.
      RuntimeException - if one of the elements of the current Mappable is null.
    • toMultiples

      <E2> IContainer<E2> toMultiples(Function<E,IContainer<E2>> multipleMapper)
      Typparameter:
      E2 - is the type of the elements of the IContainers the given multipleMapper maps from the elements of the current Mappable.
      Parameter:
      multipleMapper -
      Gibt zurück:
      a new IContainer with the elements of the IContainers the given multipleMapper maps from the elements of the current Mappable.
      Löst aus:
      RuntimeException - if the given multipleMapper is null.
      RuntimeException - if one of the elements of the current Mappable is null.
    • toNumbers

      <N extends Number> IContainer<N> toNumbers(Function<E,N> numberMapper)
      Typparameter:
      N - is the type of the Numbers the given numberMapper maps from the elements of the current Mappable.
      Parameter:
      numberMapper -
      Gibt zurück:
      a new IContainer with the Numbers the given numberMapper maps from the elements of the current Mappable. 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 the String representations of the elements of the current IContainer.
    • toWithOneBasedIndex

      <E2> IContainer<E2> toWithOneBasedIndex(BiFunction<Integer,E,E2> mapper)
      Typparameter:
      E2 - is the type of the elements the given mapper maps from the elements of the current Mappable 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 current Mappable 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 current Mappable is null.