javax.json
Interface JsonValue

All Known Subinterfaces:
JsonArray, JsonNumber, JsonObject, JsonString, JsonStructure

public interface JsonValue

JsonValue represents a JSON value. A JSON value is an object, array, number, string, true, false, null

Author:
Jitendra Kotamraju

Nested Class Summary
static class JsonValue.JsonValueType
          JSON value type
 
Field Summary
static JsonValue FALSE
          JSON false value
static JsonValue NULL
          JSON null value
static JsonValue TRUE
          JSON true value
 
Method Summary
 JsonValue.JsonValueType getValueType()
          Returns the value type of this JSON value
 

Field Detail

NULL

static final JsonValue NULL
JSON null value


TRUE

static final JsonValue TRUE
JSON true value


FALSE

static final JsonValue FALSE
JSON false value

Method Detail

getValueType

JsonValue.JsonValueType getValueType()
Returns the value type of this JSON value

Returns:
JSON value type



Copyright © 2012 Oracle and/or its affiliates. All rights reserved.