DocxStamperConfiguration |
DocxStamperConfiguration.addCommentProcessor(Class<?> interfaceClass,
ICommentProcessor commentProcessor) |
Registers the specified ICommentProcessor as an implementation of the
specified interface.
|
<T> DocxStamperConfiguration |
DocxStamperConfiguration.addTypeResolver(Class<T> resolvedType,
ITypeResolver resolver) |
Registers the given ITypeResolver for the given class.
|
DocxStamperConfiguration |
DocxStamperConfiguration.exposeInterfaceToExpressionLanguage(Class<?> interfaceClass,
Object implementation) |
Exposes all methods of a given interface to the expression language.
|
DocxStamperConfiguration |
DocxStamperConfiguration.leaveEmptyOnExpressionError(boolean leaveEmpty) |
If an error is caught while evaluating an expression the expression will be replaced with an empty string instead
of leaving the original expression in the document.
|
DocxStamperConfiguration |
DocxStamperConfiguration.nullValuesDefault(String nullValuesDefault) |
Indicates if expressions that resolve to null should be replaced by a global default value.
|
DocxStamperConfiguration |
DocxStamperConfiguration.replaceNullValues(boolean replaceNullValues) |
Indicates if expressions that resolve to null should be processed.
|
DocxStamperConfiguration |
DocxStamperConfiguration.replaceUnresolvedExpressions(boolean replaceUnresolvedExpressions) |
Indicates if expressions that doesn't resolve should be replaced by a default value.
|
DocxStamperConfiguration |
DocxStamperConfiguration.setDefaultTypeResolver(ITypeResolver defaultTypeResolver) |
|
DocxStamperConfiguration |
DocxStamperConfiguration.setEvaluationContextConfigurer(EvaluationContextConfigurer evaluationContextConfigurer) |
Provides an EvaluationContextConfigurer which may change the configuration of a Spring
EvaluationContext which is used for evaluating expressions
in comments and text.
|
DocxStamperConfiguration |
DocxStamperConfiguration.setFailOnUnresolvedExpression(boolean failOnUnresolvedExpression) |
If set to true, stamper will throw an UnresolvedExpressionException
if a variable expression or processor expression within the document or within the comments is encountered that cannot be resolved.
|
DocxStamperConfiguration |
DocxStamperConfiguration.setLineBreakPlaceholder(String lineBreakPlaceholder) |
The String provided as lineBreakPlaceholder will be replaces with a line break
when stamping a document.
|
DocxStamperConfiguration |
DocxStamperConfiguration.unresolvedExpressionsDefaultValue(String unresolvedExpressionsDefaultValue) |
Indicates the default value to use for expressions that doesn't resolve.
|