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

org.javasimon.console.text.Stringifier Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
package org.javasimon.console.text;

/**
 * Value formatter for given type.
 * @param  Input type
 * @author gquintana
 */
public interface Stringifier {
	/**
	 * Converts/formats a value into string.
	 * @param value Input value
	 * @return Ouput string
	 */
	String toString(T value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy