All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.docx4j.spring.boot.utils.StringUtils Maven / Gradle / Ivy

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