io.ebean.text.StringFormatter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
package io.ebean.text;
/**
* Convert an Object value into a String value.
*
* Basic interface to support CSV, JSON and XML processing.
*
*/
public interface StringFormatter {
/**
* Convert an Object value into a String value.
*/
String format(Object value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy