Package | Description |
---|---|
com.oracle.javafx.jmx.json |
Modifier and Type | Method and Description |
---|---|
JSONWriter |
JSONWriter.arrayValue(Object value)
Writes a value into a JSON array.
|
JSONWriter |
JSONWriter.endArray()
Writes the closing square brace for a JSON array.
|
JSONWriter |
JSONWriter.endObject()
Writes the closing curly brace for a JSON object.
|
JSONWriter |
JSONWriter.flush()
Flushes JSONWriter to writer.
|
JSONWriter |
JSONFactory.makeWriter(Writer writer)
Creates a new
JSONWriter from a writer |
JSONWriter |
JSONWriter.objectValue(String key,
Object value)
Writes a name/value pair for a JSON object.
|
JSONWriter |
JSONWriter.startArray()
Write the opening square brace for a JSON array.
|
JSONWriter |
JSONWriter.startArray(String key)
Write a JSON array with the specified name.
|
JSONWriter |
JSONWriter.startObject()
Writes the opening curly brace for a JSON object.
|
JSONWriter |
JSONWriter.startObject(String key)
Writes a JSON object with the specified name.
|
JSONWriter |
JSONWriter.writeArray(List<Object> values)
Convenience method to write the elements of a List as a JSON array.
|
JSONWriter |
JSONWriter.writeObject(Map<String,Object> values)
Convenience method to write the entries in a Map as a JSON Object.
|
Copyright © 2020. All rights reserved.