All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avaje.ebean.text.StringFormatter Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
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); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy