Interface StringMappable

All Known Subinterfaces:
ExtendedIterable<E>, IArrayList<E>, ILinkedList<E>, IMatrix<E>, IMatrixColumn<E>, IMatrixRow<E>, ISqlRecord
All Known Implementing Classes:
AbstractExtendedIterable, ArrayExtendedIterableView, ArrayList, ExtendedIterableFilterView, ExtendedIterableIntervalView, ExtendedIterableMapperView, ExtendedIterableView, ImmutableList, IterableExtendedIterableView, LinkedList, Matrix, MatrixColumn, MatrixRow, MultiExtendedIterableView, SqlRecord

public interface StringMappable
Author:
Silvan Wyss
  • Method Details

    • toConcatenatedString

      String toConcatenatedString()
      Returns:
      a concatenation of the String representations of the elements of the current StringMappable.
    • toStringWithSeparator

      String toStringWithSeparator(char separator)
      Parameters:
      separator -
      Returns:
      a concatenation of the String representations of the elements of the current StringMappable with the given separator in between.
    • toStringWithSeparator

      String toStringWithSeparator(String separator)
      Parameters:
      separator -
      Returns:
      a concatenation of the String representations of the elements of the current StringMappable with the given separator in between.
      Throws:
      RuntimeException - if the given separator is null.