InputType
- The type of input that can be converted to a textual form.OutputType
- The type of textual output of the converter. Must implement the
Textual
interface.public interface TextualConverter<InputType,OutputType extends Textual>
SingleTextualConverter
,
MultiTextualConverter
Modifier and Type | Method and Description |
---|---|
java.lang.Iterable<OutputType> |
convertAll(java.lang.Iterable<? extends InputType> inputs)
Convert the given input objects into zero or more textual objects.
|
java.lang.Iterable<OutputType> convertAll(java.lang.Iterable<? extends InputType> inputs)
convert
methods.inputs
- The inputs to convert.