public interface Iterable_To_Text<T> extends IsTransformer<Iterable<T>,String>
Transforms the input provided by an iterable into text using String Templates.
| Modifier and Type | Field and Description |
|---|---|
static String |
TO_STRING_ST
The String Template for an iterator to text translation.
|
| Modifier and Type | Method and Description |
|---|---|
static <T> Iterable_To_Text<T> |
create()
Creates a new transformer.
|
static <T> Iterable_To_Text<T> |
create(Class<T> clazz)
Creates a new transformer.
|
default String |
transform(Iterable<T> it)
Transforms from one representation to another.
|
apply, transformstatic final String TO_STRING_ST
The String Template for an iterator to text translation.
default String transform(Iterable<T> it)
TransformerTransforms from one representation to another.
transform in interface Transformer<Iterable<T>,String>it - input representationstatic <T> Iterable_To_Text<T> create()
Creates a new transformer.
T - type for iterablestatic <T> Iterable_To_Text<T> create(Class<T> clazz)
Creates a new transformer.
T - type for iterableclazz - type for the transformerCopyright © 2016–2017. All rights reserved.