main.java.pro.verron.officestamper.preset.OfficeStamperConfigurations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of engine Show documentation
Show all versions of engine Show documentation
Office-stamper is a Java template engine for docx documents, forked from org.wickedsource.docx-stamper
The newest version!
package pro.verron.officestamper.preset;
import pro.verron.officestamper.api.OfficeStamperConfiguration;
import pro.verron.officestamper.api.OfficeStamperException;
import pro.verron.officestamper.core.DocxStamperConfiguration;
/**
* The OfficeStamperConfigurations class provides static methods
* to create different configurations for the OfficeStamper.
*/
public class OfficeStamperConfigurations {
private OfficeStamperConfigurations() {
throw new OfficeStamperException("OfficeStamperConfigurations cannot be instantiated");
}
/**
* Creates a new OfficeStamperConfiguration with the standard configuration and additional preprocessors.
*
* @return the OfficeStamperConfiguration
*
* @see OfficeStamperConfiguration
*/
public static OfficeStamperConfiguration standardWithPreprocessing() {
var configuration = standard();
configuration.addPreprocessor(Preprocessors.removeLanguageProof());
configuration.addPreprocessor(Preprocessors.mergeSimilarRuns());
return configuration;
}
/**
* Creates a new standard OfficeStamperConfiguration.
*
* @return the standard OfficeStamperConfiguration
*/
public static OfficeStamperConfiguration standard() {
var configuration = new DocxStamperConfiguration();
configuration.exposeInterfaceToExpressionLanguage(IStamperDateFormatter.class, new StamperDateFormatter());
return configuration;
}
/**
* Creates a new standard OfficeStamperConfiguration.
*
* @return the standard OfficeStamperConfiguration
*/
public static OfficeStamperConfiguration raw() {
var configuration = new DocxStamperConfiguration();
configuration.resetResolvers();
configuration.setEvaluationContextConfigurer(EvaluationContextConfigurers.defaultConfigurer());
configuration.resetCommentProcessors();
return configuration;
}
}