Uses of Interface
io.pebbletemplates.pebble.loader.Loader
Packages that use Loader
-
Uses of Loader in io.pebbletemplates.pebble
Fields in io.pebbletemplates.pebble declared as LoaderModifier and TypeFieldDescriptionprivate Loader
<?> PebbleEngine.Builder.loader
private final Loader
<?> PebbleEngine.loader
Methods in io.pebbletemplates.pebble that return LoaderMethods in io.pebbletemplates.pebble with parameters of type LoaderModifier and TypeMethodDescriptionprivate PebbleTemplate
PebbleEngine.getPebbleTemplate
(String templateName, Loader loader, Object cacheKey) private PebbleTemplate
PebbleEngine.getTemplate
(String templateName, Loader loader) Sets the loader used to find templates.Constructors in io.pebbletemplates.pebble with parameters of type LoaderModifierConstructorDescriptionprivate
PebbleEngine
(Loader<?> loader, Syntax syntax, boolean strictVariables, Locale defaultLocale, int maxRenderedSize, PebbleCache<CacheKey, Object> tagCache, PebbleCache<Object, PebbleTemplate> templateCache, ExecutorService executorService, ExtensionRegistry extensionRegistry, ParserOptions parserOptions, EvaluationOptions evaluationOptions) Constructor for the Pebble Engine given an instantiated Loader. -
Uses of Loader in io.pebbletemplates.pebble.loader
Classes in io.pebbletemplates.pebble.loader that implement LoaderModifier and TypeClassDescriptionclass
Abstract base class for loaders which user the servlet context to load templates.class
Uses a classloader to find templates located on the classpath.class
This loader will delegate control to a list of children loaders.class
This loader searches for a file located anywhere on the filesystem.class
class
Loader that uses a servlet context to find templates.class
Loader that uses a servlet context to find templates.class
This loader is not intended to be used in a production system; it is primarily for testing and debugging.Fields in io.pebbletemplates.pebble.loader with type parameters of type LoaderMethods in io.pebbletemplates.pebble.loader with parameters of type LoaderModifier and TypeMethodDescriptionprivate <T> Reader
DelegatingLoader.getReaderInner
(Loader<T> delegatingLoader, Object cacheKey) Constructor parameters in io.pebbletemplates.pebble.loader with type arguments of type LoaderModifierConstructorDescriptionDelegatingLoader
(List<Loader<?>> loaders) Constructor provided with a list of children loaders.