Class NullStringifier
- java.lang.Object
-
- com.googlecode.objectify.stringifier.NullStringifier
-
- All Implemented Interfaces:
Stringifier<String>
public class NullStringifier extends Object implements Stringifier<String>
No-op stringifier used as a null object.
- Author:
- Jeff Schnitzer
-
-
Constructor Summary
Constructors Constructor Description NullStringifier()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringfromString(String str)Convert the string back to a thingStringtoString(String obj)Convert the thing to a string
-
-
-
Method Detail
-
toString
public String toString(String obj)
Description copied from interface:StringifierConvert the thing to a string- Specified by:
toStringin interfaceStringifier<String>
-
fromString
public String fromString(String str)
Description copied from interface:StringifierConvert the string back to a thing- Specified by:
fromStringin interfaceStringifier<String>
-
-