com.avaje.ebean.text.StringFormatter Maven / Gradle / Ivy
package com.avaje.ebean.text;
/**
* Convert an Object value into a String value.
*
* Basic interface to support CSV, JSON and XML processing.
*
*
* @author rbygrave
*/
public interface StringFormatter {
/**
* Convert an Object value into a String value.
*/
String format(Object value);
}