Uses of Class
io.pebbletemplates.pebble.template.EvaluationOptions
-
Packages that use EvaluationOptions Package Description io.pebbletemplates.pebble io.pebbletemplates.pebble.attributes io.pebbletemplates.pebble.template -
-
Uses of EvaluationOptions in io.pebbletemplates.pebble
Fields in io.pebbletemplates.pebble declared as EvaluationOptions Modifier and Type Field Description private EvaluationOptions
PebbleEngine. evaluationOptions
Methods in io.pebbletemplates.pebble that return EvaluationOptions Modifier and Type Method Description EvaluationOptions
PebbleEngine. getEvaluationOptions()
Constructors in io.pebbletemplates.pebble with parameters of type EvaluationOptions Constructor Description PebbleEngine(Loader<?> loader, Syntax syntax, boolean strictVariables, java.util.Locale defaultLocale, int maxRenderedSize, PebbleCache<CacheKey,java.lang.Object> tagCache, PebbleCache<java.lang.Object,PebbleTemplate> templateCache, java.util.concurrent.ExecutorService executorService, ExtensionRegistry extensionRegistry, ParserOptions parserOptions, EvaluationOptions evaluationOptions)
Constructor for the Pebble Engine given an instantiated Loader. -
Uses of EvaluationOptions in io.pebbletemplates.pebble.attributes
Methods in io.pebbletemplates.pebble.attributes with parameters of type EvaluationOptions Modifier and Type Method Description private java.lang.reflect.Method
MemberCacheUtils. findMethod(java.lang.Object object, java.lang.Class<?> clazz, java.lang.String name, java.lang.Class<?>[] requiredTypes, java.lang.String filename, int lineNumber, EvaluationOptions evaluationOptions)
Finds an appropriate method by comparing if parameter types are compatible.private java.lang.reflect.Member
MemberCacheUtils. reflect(java.lang.Object object, java.lang.String attributeName, java.lang.Class<?>[] parameterTypes, java.lang.String filename, int lineNumber, EvaluationOptions evaluationOptions)
Performs the actual reflection to obtain a "Member" from a class.private void
MemberCacheUtils. verifyUnsafeMethod(java.lang.String filename, int lineNumber, EvaluationOptions evaluationOptions, java.lang.Object object, java.lang.reflect.Method method)
-
Uses of EvaluationOptions in io.pebbletemplates.pebble.template
Fields in io.pebbletemplates.pebble.template declared as EvaluationOptions Modifier and Type Field Description private EvaluationOptions
EvaluationContextImpl. evaluationOptions
evaluation optionsMethods in io.pebbletemplates.pebble.template that return EvaluationOptions Modifier and Type Method Description EvaluationOptions
EvaluationContextImpl. getEvaluationOptions()
Returns the evaluation options.Constructors in io.pebbletemplates.pebble.template with parameters of type EvaluationOptions Constructor Description EvaluationContextImpl(PebbleTemplateImpl self, boolean strictVariables, java.util.Locale locale, int maxRenderedSize, ExtensionRegistry extensionRegistry, PebbleCache<CacheKey,java.lang.Object> tagCache, java.util.concurrent.ExecutorService executorService, java.util.List<PebbleTemplateImpl> importedTemplates, java.util.Map<java.lang.String,PebbleTemplateImpl> namedImportedTemplates, ScopeChain scopeChain, Hierarchy hierarchy, EvaluationOptions evaluationOptions)
Constructor used to provide all final variables.
-