mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
18 lines
317 B
Java
18 lines
317 B
Java
package com.avaje.ebean.text;
|
|
|
|
/**
|
|
* Convert an Object value into a String value.
|
|
* <p>
|
|
* Basic interface to support CSV, JSON and XML processing.
|
|
* </p>
|
|
*
|
|
* @author rbygrave
|
|
*/
|
|
public interface StringFormatter {
|
|
|
|
/**
|
|
* Convert an Object value into a String value.
|
|
*/
|
|
String format(Object value);
|
|
}
|