Eclipse Remote Application Platform

Uses of Class
org.eclipse.rap.json.JsonValue

Packages that use JsonValue
org.eclipse.rap.json   
org.eclipse.rap.rwt.remote   
 

Uses of JsonValue in org.eclipse.rap.json
 

Subclasses of JsonValue in org.eclipse.rap.json
 class JsonArray
          /** Represents a JSON array, i.e.
 class JsonObject
          Represents a JSON object, i.e.
 

Fields in org.eclipse.rap.json declared as JsonValue
static JsonValue JsonValue.FALSE
          Represents the JSON literal false.
static JsonValue JsonValue.NULL
          The JSON literal null.
static JsonValue JsonValue.TRUE
          Represents the JSON literal true.
 

Methods in org.eclipse.rap.json that return JsonValue
 JsonValue JsonArray.get(int index)
          Returns the value of the element at the specified position in this array.
 JsonValue JsonObject.get(java.lang.String name)
          Returns the value of the member with the specified name in this object.
 JsonValue JsonObject.Member.getValue()
          Returns the value of this member.
static JsonValue JsonValue.readFrom(java.io.Reader reader)
          Reads a JSON value from the given reader.
static JsonValue JsonValue.readFrom(java.lang.String text)
          Reads a JSON value from the given string.
static JsonValue JsonValue.valueOf(boolean value)
          Returns a JsonValue instance that represents the given boolean value.
static JsonValue JsonValue.valueOf(double value)
          Returns a JsonValue instance that represents the given double value.
static JsonValue JsonValue.valueOf(float value)
          Returns a JsonValue instance that represents the given float value.
static JsonValue JsonValue.valueOf(int value)
          Returns a JsonValue instance that represents the given int value.
static JsonValue JsonValue.valueOf(long value)
          Returns a JsonValue instance that represents the given long value.
static JsonValue JsonValue.valueOf(java.lang.String string)
          Returns a JsonValue instance that represents the given string.
 

Methods in org.eclipse.rap.json that return types with arguments of type JsonValue
 java.util.Iterator<JsonValue> JsonArray.iterator()
          Returns an iterator over the values of this array in document order.
 java.util.List<JsonValue> JsonArray.values()
          Returns a list of the values in this array in document order.
 

Methods in org.eclipse.rap.json with parameters of type JsonValue
 JsonArray JsonArray.add(JsonValue value)
          Adds the specified JSON value to the array.
 JsonObject JsonObject.add(java.lang.String name, JsonValue value)
          Adds a new member at the end of this object, with the specified name and the specified JSON value.
 JsonArray JsonArray.set(int index, JsonValue value)
          Replaces the element at the specified position in this array with the specified JSON value.
 JsonObject JsonObject.set(java.lang.String name, JsonValue value)
          Sets the value of the member with the specified name to the specified JSON value.
 

Uses of JsonValue in org.eclipse.rap.rwt.remote
 

Methods in org.eclipse.rap.rwt.remote with parameters of type JsonValue
 void RemoteObject.set(java.lang.String name, JsonValue value)
          Sets the specified property of the remote object to the given value.
 


Eclipse Remote Application Platform

Copyright (c) EclipseSource and others 2002, 2013. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0