org.jxls.transform.TransformationConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls-jdk1.6 Show documentation
Show all versions of jxls-jdk1.6 Show documentation
Small library for Excel generation based on XLS templates
The newest version!
package org.jxls.transform;
import org.jxls.expression.ExpressionEvaluator;
import org.jxls.expression.JexlExpressionEvaluator;
import java.util.regex.Pattern;
/**
* Transformation configuration class
*/
public class TransformationConfig {
public static final String EXPRESSION_PART = "(.+?)";
public static final String DEFAULT_EXPRESSION_BEGIN = "${";
public static final String DEFAULT_EXPRESSION_END = "}";
protected static final String DEFAULT_REGEX_EXPRESSION = "\\$\\{[^}]*}";
ExpressionEvaluator expressionEvaluator = new JexlExpressionEvaluator();
String expressionNotationBegin = DEFAULT_EXPRESSION_BEGIN;
String expressionNotationEnd = DEFAULT_EXPRESSION_END;
Pattern expressionNotationPattern = Pattern.compile(DEFAULT_REGEX_EXPRESSION);
public TransformationConfig() {
}
public void buildExpressionNotation(String expressionBegin, String expressionEnd){
this.expressionNotationBegin = expressionBegin;
this.expressionNotationEnd = expressionEnd;
String regexExpression = Pattern.quote(expressionNotationBegin) + EXPRESSION_PART + Pattern.quote(expressionNotationEnd);
expressionNotationPattern = Pattern.compile(regexExpression);
}
public ExpressionEvaluator getExpressionEvaluator() {
return expressionEvaluator;
}
public void setExpressionEvaluator(ExpressionEvaluator expressionEvaluator) {
this.expressionEvaluator = expressionEvaluator;
}
public String getExpressionNotationBegin() {
return expressionNotationBegin;
}
public String getExpressionNotationEnd() {
return expressionNotationEnd;
}
public Pattern getExpressionNotationPattern(){
return expressionNotationPattern;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy