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

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

There is a newer version: 6.1.2
Show newest version
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