Package tech.tablesaw.columns.strings
Interface StringReduceUtils
-
- All Known Subinterfaces:
DictionaryMap
,StringData
- All Known Implementing Classes:
ByteDictionaryMap
,IntDictionaryMap
,NullDictionaryMap
,ShortDictionaryMap
,StringColumn
,TextualStringData
public interface StringReduceUtils extends Iterable<String>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default String
appendAll()
Returns a single string made by appending all the strings in this column, separated by a single space characterdefault String
appendAll(String delimiter)
Returns a single string made by appending all the strings in this column, separated by the given delimiterint
size()
-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
appendAll
default String appendAll(String delimiter)
Returns a single string made by appending all the strings in this column, separated by the given delimiter
-
appendAll
default String appendAll()
Returns a single string made by appending all the strings in this column, separated by a single space character
-
size
int size()
-
-