JsonOptions Class
- java.
lang. Object - com.
azure. json. JsonOptions
- com.
public final class JsonOptions
Contains configuration options for creating a JsonReader or JsonWriter.
Constructor Summary
Constructor | Description |
---|---|
JsonOptions() |
Creates an instance of JsonOptions. |
Method Summary
Modifier and Type | Method and Description |
---|---|
boolean |
isJsoncSupported()
Whether JSONC (JSON with comments) is supported. |
boolean |
isNonNumericNumbersSupported()
Whether non-numeric numbers such as |
Json |
setJsoncSupported(boolean jsoncSupported)
Sets whether JSONC (JSON with comments) is supported. |
Json |
setNonNumericNumbersSupported(boolean nonNumericNumbersSupported)
Sets whether non-numeric numbers such as |
Methods inherited from java.lang.Object
Constructor Details
JsonOptions
public JsonOptions()
Creates an instance of JsonOptions.
Method Details
isJsoncSupported
public boolean isJsoncSupported()
Whether JSONC (JSON with comments) is supported. By default, this is configured to false.
Returns:
isNonNumericNumbersSupported
public boolean isNonNumericNumbersSupported()
Whether non-numeric numbers such as NaN
and INF
and -INF
are supported.
By default, this is configured to true.
Returns:
setJsoncSupported
public JsonOptions setJsoncSupported(boolean jsoncSupported)
Sets whether JSONC (JSON with comments) is supported. By default, this is configured to false.
Parameters:
Returns:
setNonNumericNumbersSupported
public JsonOptions setNonNumericNumbersSupported(boolean nonNumericNumbersSupported)
Sets whether non-numeric numbers such as NaN
and INF
and -INF
are supported.
By default, this is configured to true.
Parameters:
Returns:
Applies to
Azure SDK for Java