001package com.avaje.ebean.text;
002
003/**
004 * Convert an Object value into a String value.
005 * <p>
006 * Basic interface to support CSV, JSON and XML processing.
007 * </p>
008 * 
009 * @author rbygrave
010 */
011public interface StringFormatter {
012
013  /**
014   * Convert an Object value into a String value.
015   */
016  String format(Object value);
017}