Interface JsonParseOptions


public interface JsonParseOptions
Holding options about how to parse a Json type (JsonObject, JsonPointer, ...) from a String.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns whether a string to be parsed should be URL decoded before parsing or not.
    Returns a new mutable builder for JsonParseOptions.
  • Method Details

    • newBuilder

      static JsonParseOptionsBuilder newBuilder()
      Returns a new mutable builder for JsonParseOptions.
      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.