Compartir a través de


JsonOptions Class

  • java.lang.Object
    • com.azure.json.JsonOptions

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 isNonNumericNumbersSupported()

Whether non-numeric numbers such as NaN and INF and -INF are supported.

JsonOptions setNonNumericNumbersSupported(boolean nonNumericNumbersSupported)

Sets whether non-numeric numbers such as NaN and INF and -INF are supported.

Methods inherited from java.lang.Object

Constructor Details

JsonOptions

public JsonOptions()

Creates an instance of JsonOptions.

Method Details

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:

Whether non-numeric numbers are supported.

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:

nonNumericNumbersSupported - Whether non-numeric numbers are supported.

Returns:

The updated JsonOptions object.

Applies to