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.loaderprivate final Loader<?> PebbleEngine.loaderMethods in io.pebbletemplates.pebble that return LoaderMethods in io.pebbletemplates.pebble with parameters of type LoaderModifier and TypeMethodDescriptionprivate PebbleTemplatePebbleEngine.getPebbleTemplate(String templateName, Loader loader, Object cacheKey) private PebbleTemplatePebbleEngine.getTemplate(String templateName, Loader loader) Sets the loader used to find templates.Constructors in io.pebbletemplates.pebble with parameters of type LoaderModifierConstructorDescriptionprivatePebbleEngine(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 TypeClassDescriptionclassAbstract base class for loaders which user the servlet context to load templates.classUses a classloader to find templates located on the classpath.classThis loader will delegate control to a list of children loaders.classThis loader searches for a file located anywhere on the filesystem.classclassLoader that uses a servlet context to find templates.classLoader that uses a servlet context to find templates.classThis 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> ReaderDelegatingLoader.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.