Uses of Interface
ratpack.core.render.Renderer
-
Packages that use Renderer Package Description ratpack.core.render The renderer framework provides a pluggable mechanism for serializing objects to the response.ratpack.groovy.render Specialised Groovy support for rendering.ratpack.rocker Support for Rocker templates. -
-
Uses of Renderer in ratpack.core.render
Classes in ratpack.core.render that implement Renderer Modifier and Type Class Description class
RendererSupport<T>
ARenderer
super class that provides aRendererSupport.getType()
implementation based on the generic type of the impl.Methods in ratpack.core.render that return Renderer Modifier and Type Method Description static <T> Renderer<T>
Renderer. of(Class<T> type, BiConsumer<? super Context,? super T> impl)
Creates a renderer implementation from the given arguments.Methods in ratpack.core.render that return types with arguments of type Renderer Modifier and Type Method Description static <T> com.google.common.reflect.TypeToken<Renderer<T>>
Renderer. typeOf(Class<T> typeToRender)
Creates a type token for a renderer of the given type of object.Constructors in ratpack.core.render with parameters of type Renderer Constructor Description RendererException(Renderer<?> renderer, Object object, Throwable cause)
Constructor. -
Uses of Renderer in ratpack.groovy.render
Classes in ratpack.groovy.render that implement Renderer Modifier and Type Class Description class
GroovyRendererSupport<T>
A specialisation ofRendererSupport
that makes aGroovyContext
available. -
Uses of Renderer in ratpack.rocker
Subinterfaces of Renderer in ratpack.rocker Modifier and Type Interface Description interface
RockerRenderer
A renderer for Rocker templates.Methods in ratpack.rocker that return Renderer Modifier and Type Method Description static Renderer<com.fizzed.rocker.RockerModel>
RockerRenderer. create()
Creates aRenderer
orRockerModel
objects.
-