org.docx4j.spring.boot.utils.StringUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docx4j-spring-boot-starter Show documentation
Show all versions of docx4j-spring-boot-starter Show documentation
Spring Boot Starter For Docx4j
package org.docx4j.spring.boot.utils;
public class StringUtils extends org.springframework.util.StringUtils{
/**
* Any number of these characters are considered delimiters between
* multiple context config paths in a single String value.
*/
public static String CONFIG_LOCATION_DELIMITERS = ",; \t\n";
public static String[] tokenizeToStringArray(String str) {
return tokenizeToStringArray(str, CONFIG_LOCATION_DELIMITERS, true, true);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy