static <Type> String |
Collections.stringify(Collection<Type> collection,
String prefix,
String suffix,
boolean includePrefixAndSuffixOnlyIfCollectionNotEmpty,
String separator,
IStringify<Type> stringify) |
Creates a string representation of the given collection, using its values.
|
static <Type> String |
Collections.stringify(Collection<Type> collection,
String prefix,
String suffix,
String separator,
IStringify<Type> stringify) |
Creates a string representation of the given collection, using its values.
|
static <Type> String |
Collections.stringify(Collection<Type> collection,
String separator,
IStringify<Type> stringify) |
Creates a string representation of the given collection, using its values.
|
static <Type> String |
Collections.stringify(Collection<Type> collection,
IStringify<Type> stringify) |
Creates a string representation of the given collection, using its values.
|
static <K,V> String |
Maps.stringify(Map<K,V> map,
String prefix,
String suffix,
boolean includePrefixAndSuffixOnlyIfMapNotEmpty,
String separator,
IStringify<Map.Entry<K,V>> stringify) |
Creates a string representation of the given map, using its entries as values.
|
static <K,V> String |
Maps.stringify(Map<K,V> map,
String prefix,
String suffix,
String separator,
IStringify<Map.Entry<K,V>> stringify) |
Creates a string representation of the given map, using its entries as values.
|
static <K,V> String |
Maps.stringify(Map<K,V> map,
String separator,
IStringify<Map.Entry<K,V>> stringify) |
Creates a string representation of the given map, using its entries as values.
|