Uses of Class
org.jmxtrans.agent.util.json.JsonObject

Packages that use JsonObject
Package Description
org.jmxtrans.agent.util.json  
  • Uses of JsonObject in org.jmxtrans.agent.util.json

    Methods in org.jmxtrans.agent.util.json that return JsonObject
    Modifier and Type Method Description
    JsonObject JsonObject.add​(String name, boolean value)
    Appends a new member to the end of this object, with the specified name and the JSON representation of the specified boolean value.
    JsonObject JsonObject.add​(String name, double value)
    Appends a new member to the end of this object, with the specified name and the JSON representation of the specified double value.
    JsonObject JsonObject.add​(String name, float value)
    Appends a new member to the end of this object, with the specified name and the JSON representation of the specified float value.
    JsonObject JsonObject.add​(String name, int value)
    Appends a new member to the end of this object, with the specified name and the JSON representation of the specified int value.
    JsonObject JsonObject.add​(String name, long value)
    Appends a new member to the end of this object, with the specified name and the JSON representation of the specified long value.
    JsonObject JsonObject.add​(String name, String value)
    Appends a new member to the end of this object, with the specified name and the JSON representation of the specified string.
    JsonObject JsonObject.add​(String name, JsonValue value)
    Appends a new member to the end of this object, with the specified name and the specified JSON value.
    JsonObject JsonObject.asObject()  
    JsonObject JsonValue.asObject()
    Returns this JSON value as JsonObject, assuming that this value represents a JSON object.
    JsonObject JsonObject.merge​(JsonObject object)
    Copies all members of the specified object into this object.
    static JsonObject Json.object()
    Creates a new empty JsonObject.
    static JsonObject JsonObject.readFrom​(Reader reader)
    Deprecated.
    static JsonObject JsonObject.readFrom​(String string)
    Deprecated.
    JsonObject JsonObject.remove​(String name)
    Removes a member with the specified name from this object.
    JsonObject JsonObject.set​(String name, boolean value)
    Sets the value of the member with the specified name to the JSON representation of the specified boolean value.
    JsonObject JsonObject.set​(String name, double value)
    Sets the value of the member with the specified name to the JSON representation of the specified double value.
    JsonObject JsonObject.set​(String name, float value)
    Sets the value of the member with the specified name to the JSON representation of the specified float value.
    JsonObject JsonObject.set​(String name, int value)
    Sets the value of the member with the specified name to the JSON representation of the specified int value.
    JsonObject JsonObject.set​(String name, long value)
    Sets the value of the member with the specified name to the JSON representation of the specified long value.
    JsonObject JsonObject.set​(String name, String value)
    Sets the value of the member with the specified name to the JSON representation of the specified string.
    JsonObject JsonObject.set​(String name, JsonValue value)
    Sets the value of the member with the specified name to the specified JSON value.
    static JsonObject JsonObject.unmodifiableObject​(JsonObject object)
    Returns an unmodifiable JsonObject for the specified one.
    Methods in org.jmxtrans.agent.util.json with parameters of type JsonObject
    Modifier and Type Method Description
    JsonObject JsonObject.merge​(JsonObject object)
    Copies all members of the specified object into this object.
    static JsonObject JsonObject.unmodifiableObject​(JsonObject object)
    Returns an unmodifiable JsonObject for the specified one.
    Constructors in org.jmxtrans.agent.util.json with parameters of type JsonObject
    Constructor Description
    JsonObject​(JsonObject object)
    Creates a new JsonObject, initialized with the contents of the specified JSON object.