Class PebbleTemplateEngine
- java.lang.Object
-
- io.vertx.mutiny.ext.web.common.template.TemplateEngine
-
- io.vertx.mutiny.ext.web.templ.pebble.PebbleTemplateEngine
-
public class PebbleTemplateEngine extends TemplateEngine
A template engine that uses the Pebble library. TheTemplateEngine.unwrap()
shall return an object of class NOTE: This class has been automatically generated from theoriginal
non Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<PebbleTemplateEngine>
__TYPE_ARG
static String
DEFAULT_TEMPLATE_EXTENSION
Default template extension
-
Constructor Summary
Constructors Constructor Description PebbleTemplateEngine(io.vertx.ext.web.templ.pebble.PebbleTemplateEngine delegate)
PebbleTemplateEngine(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PebbleTemplateEngine
create(Vertx vertx)
static PebbleTemplateEngine
create(Vertx vertx, com.mitchellbosecke.pebble.PebbleEngine engine)
static PebbleTemplateEngine
create(Vertx vertx, String extension)
static PebbleTemplateEngine
create(Vertx vertx, String extension, com.mitchellbosecke.pebble.PebbleEngine engine)
boolean
equals(Object o)
io.vertx.ext.web.templ.pebble.PebbleTemplateEngine
getDelegate()
int
hashCode()
static PebbleTemplateEngine
newInstance(io.vertx.ext.web.templ.pebble.PebbleTemplateEngine arg)
String
toString()
-
Methods inherited from class io.vertx.mutiny.ext.web.common.template.TemplateEngine
clearCache, newInstance, render, render, renderAndAwait, renderAndAwait, renderAndForget, renderAndForget, unwrap
-
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<PebbleTemplateEngine> __TYPE_ARG
-
DEFAULT_TEMPLATE_EXTENSION
public static final String DEFAULT_TEMPLATE_EXTENSION
Default template extension- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PebbleTemplateEngine
public PebbleTemplateEngine(io.vertx.ext.web.templ.pebble.PebbleTemplateEngine delegate)
-
PebbleTemplateEngine
public PebbleTemplateEngine(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.ext.web.templ.pebble.PebbleTemplateEngine getDelegate()
- Overrides:
getDelegate
in classTemplateEngine
-
toString
public String toString()
- Overrides:
toString
in classTemplateEngine
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classTemplateEngine
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classTemplateEngine
-
create
public static PebbleTemplateEngine create(Vertx vertx)
- Parameters:
vertx
-- Returns:
- the engine
-
create
public static PebbleTemplateEngine create(Vertx vertx, String extension)
- Parameters:
vertx
-extension
-- Returns:
- the engine
-
create
public static PebbleTemplateEngine create(Vertx vertx, com.mitchellbosecke.pebble.PebbleEngine engine)
- Parameters:
vertx
-engine
-- Returns:
- the engine
-
create
public static PebbleTemplateEngine create(Vertx vertx, String extension, com.mitchellbosecke.pebble.PebbleEngine engine)
- Parameters:
vertx
-extension
-engine
-- Returns:
- the engine
-
newInstance
public static PebbleTemplateEngine newInstance(io.vertx.ext.web.templ.pebble.PebbleTemplateEngine arg)
-
-