Schnittstelle IArrayTool

Alle bekannten Implementierungsklassen:
ArrayTool

public interface IArrayTool
A IArrayTool provides functions to handle arrays.
Version:
2024-12-25
Autor:
Silvan Wyss
  • Methodendetails

    • createArrayWithElement

      <E> E[] createArrayWithElement(E element, E... elements)
      Typparameter:
      E - is the type of the given element and the given elements.
      Parameter:
      element -
      elements -
      Gibt zurück:
      a new array with the given element and elements.
      Löst aus:
      RuntimeException - if the given elements is null.
    • createIterable

      Iterable<Byte> createIterable(byte[] bytes)
      Parameter:
      bytes -
      Gibt zurück:
      a new Iterable with the given bytes.
      Löst aus:
      RuntimeException - if the given bytes is null.
    • createIterable

      Iterable<Double> createIterable(double[] values)
      Parameter:
      values -
      Gibt zurück:
      a new Iterable with the given values.
      Löst aus:
      RuntimeException - if the given values is null.
    • createIterable

      <E> Iterable<E> createIterable(E[] elements)
      Typparameter:
      E - is the type of the given elements.
      Parameter:
      elements -
      Gibt zurück:
      a new Iterable with the given elements.
      Löst aus:
      RuntimeException - if the given elements is null.
    • createIterable

      Iterable<Long> createIterable(int[] values)
      Parameter:
      values -
      Gibt zurück:
      a new Iterable with the given values.
      Löst aus:
      RuntimeException - if the given values is null.
    • createIterable

      Iterable<Long> createIterable(long[] values)
      Parameter:
      values -
      Gibt zurück:
      a new Iterable with the given values.
      Löst aus:
      RuntimeException - if the given values is null.
    • createString

      String createString(long[] values)
      Parameter:
      values -
      Gibt zurück:
      a String representation of the given values.
      Löst aus:
      RuntimeException - if the given values is null.