com.googlecode.objectify.stringifier.Stringifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of objectify Show documentation
Show all versions of objectify Show documentation
The simplest convenient interface to the Google App Engine datastore
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