Uses of Class
org.wickedsource.docxstamper.DocxStamperConfiguration
Packages that use DocxStamperConfiguration
-
Uses of DocxStamperConfiguration in org.wickedsource.docxstamper
Methods in org.wickedsource.docxstamper that return DocxStamperConfigurationModifier and TypeMethodDescriptionDocxStamperConfiguration.addCommentProcessor(Class<?> interfaceClass, CommentProcessorBuilder commentProcessorFactory) Registers the specified ICommentProcessor as an implementation of the specified interface.DocxStamperConfiguration.addTypeResolver(Class<T> resolvedType, ITypeResolver<T> resolver) Registers the given ITypeResolver for the given class.DocxStamperConfiguration.exposeInterfaceToExpressionLanguage(Class<?> interfaceClass, Object implementation) Exposes all methods of a given interface to the expression language.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.nullValuesDefault(String nullValuesDefault) Indicates if expressions that resolve to null should be replaced by a global default value.DocxStamperConfiguration.replaceNullValues(boolean replaceNullValues) Indicates if expressions that resolve to null should be processed.DocxStamperConfiguration.replaceUnresolvedExpressions(boolean replaceUnresolvedExpressions) Indicates if expressions that doesn't resolve should be replaced by a default value.DocxStamperConfiguration.setDefaultTypeResolver(ITypeResolver<? super Object> defaultTypeResolver) Setter for the fielddefaultTypeResolver.DocxStamperConfiguration.setEvaluationContextConfigurer(EvaluationContextConfigurer evaluationContextConfigurer) Provides anEvaluationContextConfigurerwhich may change the configuration of a SpringEvaluationContextwhich is used for evaluating expressions in comments and text.DocxStamperConfiguration.setFailOnUnresolvedExpression(boolean failOnUnresolvedExpression) If set to true, stamper will throw anDocxStamperExceptionif a variable expression or processor expression within the document or within the comments is encountered that cannot be resolved.DocxStamperConfiguration.setLineBreakPlaceholder(String lineBreakPlaceholder) The String provided as lineBreakPlaceholder will be replaced with a line break when stamping a document.DocxStamperConfiguration.setSpelParserConfiguration(org.springframework.expression.spel.SpelParserConfiguration spelParserConfiguration) Sets theSpelParserConfigurationto use for expression parsing.DocxStamperConfiguration.unresolvedExpressionsDefaultValue(String unresolvedExpressionsDefaultValue) Indicates the default value to use for expressions that doesn't resolve.Constructors in org.wickedsource.docxstamper with parameters of type DocxStamperConfigurationModifierConstructorDescriptionDocxStamper(DocxStamperConfiguration configuration) Creates a new DocxStamper with the given configuration. -
Uses of DocxStamperConfiguration in org.wickedsource.docxstamper.processor
Constructors in org.wickedsource.docxstamper.processor with parameters of type DocxStamperConfigurationModifierConstructorDescriptionCommentProcessorFactory(DocxStamperConfiguration configuration) Creates a new CommentProcessorFactory.