org.summerb.stringtemplate.api.StringTemplateCompiler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of summerb-stringtemplate Show documentation
Show all versions of summerb-stringtemplate Show documentation
A library for working with string templates
package org.summerb.stringtemplate.api;
/**
* Interface for interacting with string template compiler. Compiler able to
* parse template and provide compiled result.
*
* @author skarpushin
*
*/
public interface StringTemplateCompiler {
StringTemplate compile(String template);
}