StringBridge allowing a translation from the string representation back to the Object
. objectToString( stringToObject( string ) )
and stringToObject( objectToString( object ) )
should be "idempotent". More precisely: objectToString( stringToObject( string ) ).equals(string)
, for non null
string. stringToObject( objectToString( object ) ).equals(object)
, for non null
object.
As for all Bridges implementations must be threadsafe.
@author Emmanuel Bernard
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|