com.googlecode.objectify.stringifier.NullStringifier 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;
/**
* No-op stringifier used as a null object.
*
* @author Jeff Schnitzer
*/
public class NullStringifier implements Stringifier
{
@Override
public String toString(String obj) {
return obj;
}
@Override
public String fromString(String str) {
return str;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy