Package net.luis.utils.io.data.json


package net.luis.utils.io.data.json
  • Class
    Description
    Represents a json array.
    A json array is an ordered collection of values.
    The values can be of any type, including json null.
    Configuration for reading and writing json elements.
    A generic class representing a json element.
    A json element can be a json object, a json array, a json primitive or a json null.
    Represents a json null value.
    This class is a singleton.
    Represents a json object.
    A json object is an ordered set of name/value pairs.
    A name is a string and a value can be any json element, including json null.
    Represents a json primitive value.
    A primitive value can be a boolean, number or string.
    A json reader for reading json elements from a string or input provider.
    The reader can be used to read json arrays, objects, primitives and null values.
    The reader expects only one json element per input.
    A json writer for writing json elements to an output.
    The writer can be used to write json arrays, objects, values and null values.
    The writer expects only one json element per output.