Uses of Class
org.bson.json.JsonMode
-
Packages that use JsonMode Package Description org.bson.json JSON serialization and deserialization. -
-
Uses of JsonMode in org.bson.json
Methods in org.bson.json that return JsonMode Modifier and Type Method Description JsonMode
JsonWriterSettings. getOutputMode()
The output mode to use.static JsonMode
JsonMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static JsonMode[]
JsonMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.bson.json with parameters of type JsonMode Modifier and Type Method Description JsonWriterSettings.Builder
JsonWriterSettings.Builder. outputMode(JsonMode outputMode)
Sets the output mode, which defaults toRELAXED
.Constructors in org.bson.json with parameters of type JsonMode Constructor Description JsonWriterSettings(JsonMode outputMode)
Deprecated.Use theJsonWriterSettings.Builder
insteadJsonWriterSettings(JsonMode outputMode, boolean indent)
Deprecated.Use theJsonWriterSettings.Builder
insteadJsonWriterSettings(JsonMode outputMode, String indentCharacters)
Deprecated.Use theJsonWriterSettings.Builder
insteadJsonWriterSettings(JsonMode outputMode, String indentCharacters, String newLineCharacters)
Deprecated.Use theJsonWriterSettings.Builder
instead
-