
T - the type to renderpublic abstract class AbstractRenderer<T> extends Object implements Renderer<T>
| Constructor and Description |
|---|
AbstractRenderer() |
| Modifier and Type | Method and Description |
|---|---|
void |
render(T object,
Appendable appendable)
Renders
object as plain text, appended directly to appendable. |
public void render(T object, Appendable appendable) throws IOException
Rendererobject as plain text, appended directly to appendable. Should never throw any exceptions except if appendable
throws an IOException.render in interface Renderer<T>IOExceptionCopyright © 2018. All rights reserved.