File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -750,6 +750,7 @@ public String toJson() {
750
750
751
751
/**
752
752
* Gets a JSON representation of this document using the given {@code JsonWriterSettings}.
753
+ * @param settings the JSON writer settings
753
754
* @return a JSON representation of this document
754
755
*/
755
756
public String toJson (final JsonWriterSettings settings ) {
Original file line number Diff line number Diff line change 17
17
package org .bson .json ;
18
18
19
19
/**
20
- * An enumeration of the supported output modes of {@code JSONWriter}. See
21
- * <a href="docs.mongodb.org/manual/reference/mongodb-extended-json/">MongoDB extended JSON documentation</a>.
20
+ * An enumeration of the supported output modes of {@code JSONWriter}.
22
21
*
23
22
* @see JsonWriter
24
23
* @since 3.0
24
+ * @mongodb.driver.manual reference/mongodb-extended-json/ MongoDB Extended JSON
25
25
*/
26
26
public enum JsonMode {
27
27
28
28
/**
29
- * This mode produces output conforming to the <a href="http://www.json.org">JSON RFC spec</a>.
29
+ * Strict mode representations of BSON types conform to the <a href="http://www.json.org">JSON RFC spec</a>.
30
30
*/
31
31
STRICT ,
32
32
You can’t perform that action at this time.
0 commit comments