Interface IterableStringProvider
- All Known Subinterfaces:
ExtendedIterable<E>, IAppendableList<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 IterableStringProvider
- Author:
- Silvan Wyss
-
Method Summary
Modifier and TypeMethodDescriptiontoStringWithDelimiter(char delimiter) toStringWithDelimiter(String delimiter)
-
Method Details
-
toConcatenatedString
String toConcatenatedString()- Returns:
- a concatenation of the
Stringrepresentations of the elements of the currentIterableStringProvider.
-
toStringWithDelimiter
- Parameters:
delimiter-- Returns:
- a concatenation of the
Stringrepresentations of the elements of the currentIterableStringProviderwith the given separator in between.
-
toStringWithDelimiter
- Parameters:
delimiter-- Returns:
- a concatenation of the
Stringrepresentations of the elements of the currentIterableStringProviderwith the given separator in between - Throws:
RuntimeException- if the given separator is null
-