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

com.github.mustachejava.Iteration Maven / Gradle / Ivy

There is a newer version: 0.9.14
Show newest version
package com.github.mustachejava;

import java.io.Writer;

/**
 * This is the callback interface for iterating on a value. You can override the iterate
 * method in an ObjectHandler to change the types recognized by mustache.java as iterable.
 */
public interface Iteration {
  Writer next(Writer writer, Object next, Object[] scopes);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy