public static function transform(SerializationStreamReader $streamReader)
 {
     return $streamReader->readString();
 }
 public function readNext(SerializationStreamReader $reader)
 {
     return $reader->readString();
 }
 /**
  * Enter description here...
  * @throws SerializationException
  * 
  * @return Short
  */
 public static function instantiate(SerializationStreamReader $streamReader)
 {
     return FORCE_CAST_TO_PHP_PRIMITIVE_TYPES ? $streamReader->readString() : new String($streamReader->readString());
 }