io.ebean.text.StringFormatter Maven / Gradle / Ivy
package io.ebean.text;
/**
* Convert an Object value into a String value.
*
* Basic interface to support CSV, JSON and XML processing.
*
*/
@FunctionalInterface
public interface StringFormatter {
/**
* Convert an Object value into a String value.
*/
String format(Object value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy