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

org.summerb.stringtemplate.api.StringTemplate Maven / Gradle / Ivy

There is a newer version: 6.4.0
Show newest version
package org.summerb.stringtemplate.api;

import org.summerb.stringtemplate.impl.StringTemplateStaticImpl;

/**
 * Interface for evaluating string template and getting "rendered" result.
 * 
 * Instance of this interface must be thread-safe, because it might be cached
 * and used concurrently in several threads
 * 
 * @author skarpushin
 * 
 * @see StringTemplateStaticImpl
 * @see StringTemplateCompiler
 */
public interface StringTemplate {
	String applyTo(Object rootObject);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy