Class JSONSerializers

    • Method Summary

      All Methods Static Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static ObjectSerializer getLegacy()
      Deprecated.
      Returns an ObjectSerializer that mostly conforms to the strict JSON format defined in , but with a few differences to keep compatibility with previous versions of the driver.
      static ObjectSerializer getStrict()
      Deprecated.
      Returns an ObjectSerializer that conforms to the strict JSON format defined in .
      • Methods inherited from class java.lang.

        , , , , , , , , , ,
    • Method Detail

      • getLegacy

        public static ObjectSerializer getLegacy()
        Deprecated.
        Returns an ObjectSerializer that mostly conforms to the strict JSON format defined in , but with a few differences to keep compatibility with previous versions of the driver. Clients should generally prefer getStrict in preference to this method.
        Returns:
        object serializer
        See Also:
        getStrict()
        MongoDB documentation
      • getStrict

        public static ObjectSerializer getStrict()
        Deprecated.
        Returns an ObjectSerializer that conforms to the strict JSON format defined in .
        Returns:
        object serializer
        MongoDB documentation