Package io.github.jopenlibs.vault.json


package io.github.jopenlibs.vault.json

Intended for internal use by other classes within the Vault driver library.

JSON parsing functionality. The classes in this package are adapted from Ralf Sternberg's excellent "minimal-json" library, available under the MIT License. The package names have all been changed, to prevent any conflicts should you happen to be using a different version of this library elsewhere in your project dependencies.

  • Class
    Description
    This class serves as the entry point to the minimal-json API.
    Represents a JSON array, an ordered collection of JSON values.
    Represents a JSON object, a set of name/value pairs, where the names are strings and the values are JSON values.
    Represents a member of a JSON object, a pair of a name and a value.
    Represents a JSON value.
    An unchecked exception to indicate that an input does not qualify as valid JSON.
    Enables human readable JSON output by inserting whitespace between values.after commas and colons.
    Controls the formatting of the JSON output.