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

com.googlecode.objectify.stringifier.Stringifier Maven / Gradle / Ivy

There is a newer version: 6.1.2
Show newest version
package com.googlecode.objectify.stringifier;



/**
 * 

Used with the @Stringify annotation to convert arbitrary objects to Strings.

* * @author Jeff Schnitzer */ public interface Stringifier { /** Convert the thing to a string */ String toString(T obj); /** Convert the string back to a thing */ T fromString(String str); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy