Uses of Interface
jsonvalues.Json

Packages that use Json
Package
Description
 
 
  • Uses of Json in jsonvalues

    Classes in jsonvalues with type parameters of type Json
    Modifier and Type
    Interface
    Description
    interface 
    Json<T extends Json<T>>
    Represents a json of type T, where T is the type of the container, either a JsObj or a JsArray.
    Classes in jsonvalues that implement Json
    Modifier and Type
    Class
    Description
    final class 
    Represents a json array, which is an ordered list of elements.
    class 
    Represents an immutable JSON object.
    Methods in jsonvalues that return Json
    Modifier and Type
    Method
    Description
    default Json<?>
    JsValue.toJson()
    Returns this JsValue as a Json
    Method parameters in jsonvalues with type arguments of type Json
    Modifier and Type
    Method
    Description
    default boolean
    JsValue.isJson(Predicate<Json<?>> predicate)
    Returns true if this elem is a Json and satisfies the given predicate
  • Uses of Json in jsonvalues.spec

    Methods in jsonvalues.spec with parameters of type Json
    Modifier and Type
    Method
    Description
    byte[]
    JsonIO.serialize(Json<?> json)
     
    void
    JsonIO.serialize(Json<?> json, OutputStream stream)
     
    JsonIO.toPrettyString(Json<?> json, int indentLength)