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

com.mitchellbosecke.pebble.template.PebbleTemplate Maven / Gradle / Ivy

package com.mitchellbosecke.pebble.template;

import java.io.IOException;
import java.io.StringWriter;
import java.io.Writer;
import java.util.Locale;
import java.util.Map;

public class PebbleTemplate {

    void evaluate(StringWriter stringWriter) throws IOException {

    }

    void evaluate(Writer writer, Locale locale) throws IOException {

    }

    public void evaluate(Writer writer, Map context) throws IOException {

    }

    public void evaluate(Writer writer, Map context, Locale locale) throws IOException {

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy