Class SerializedObjectConverter


  • public class SerializedObjectConverter
    extends TypeConverter
    Author:
    Uwe Schaefer, (us@thomas-daily.de)
    • Constructor Detail

      • SerializedObjectConverter

        public SerializedObjectConverter()
    • Method Detail

      • decode

        public java.lang.Object decode​(java.lang.Class targetClass,
                                       java.lang.Object fromDBObject,
                                       MappedField f)
        Description copied from class: TypeConverter
        decode the DBObject and provide the corresponding java (type-safe) object
        NOTE: optionalExtraInfo might be null
        Specified by:
        decode in class TypeConverter
        Parameters:
        targetClass - the class to create and populate
        fromDBObject - the DBObject to use when populating the new instance
        f - the MappedField that contains the metadata useful for decoding
        Returns:
        the new instance
      • encode

        public java.lang.Object encode​(java.lang.Object value,
                                       MappedField f)
        Description copied from class: TypeConverter
        encode the (type-safe) java object into the corresponding DBObject
        Overrides:
        encode in class TypeConverter
        Parameters:
        value - The object to encode
        f - the MappedField that contains the metadata useful for decoding
        Returns:
        the encoded version of the object
      • isSupported

        protected boolean isSupported​(java.lang.Class c,
                                      MappedField optionalExtraInfo)
        Description copied from class: TypeConverter
        checks if the class is supported for this converter.
        Overrides:
        isSupported in class TypeConverter