Package org.eclipse.ditto.json
Interface JsonParseOptions
-
public interface JsonParseOptions
Holding options about how to parse a Json type (JsonObject, JsonPointer, ...) from a String.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isApplyUrlDecoding()
Returns whether a string to be parsed should be URL decoded before parsing or not.static JsonParseOptionsBuilder
newBuilder()
Returns a new mutable builder forJsonParseOptions
.
-
-
-
Method Detail
-
newBuilder
static JsonParseOptionsBuilder newBuilder()
Returns a new mutable builder forJsonParseOptions
.- Returns:
- the new JsonParseOptionsBuilder.
-
isApplyUrlDecoding
boolean isApplyUrlDecoding()
Returns whether a string to be parsed should be URL decoded before parsing or not.- Returns:
- whether a string to be parsed should be URL decoded before parsing or not.
-
-