Transaction System API

JSONBuffer

Provides the ability to build a JSON string from platform objects.

Method Summary
JSONBuffer endArray()

Ends an array node.

JSONBuffer endObject()

Ends an object node.

JSONBuffer key(String name)

Starts an object node with the given name.

JSONBuffer preserveType(boolean boolean)

If true, Data operations will attempt to have type guessed and added accordingly (rather than being a string always).

JSONBuffer set(String key, String value)

Adds the key/value pair to the buffer.

JSONBuffer setBoolean(String name, boolean value)

Adds the key/value pair to the buffer.

JSONBuffer setBooleans(boolean[] items)

Adds the item(s) to the array node in this buffer.

JSONBuffer setData(Data data)

Adds the Data to this buffer.

JSONBuffer setData(String name, Data data)

Adds the Data to this buffer with the given key.

JSONBuffer setDataList(DataList datalist)

Adds the datalist to the buffer.

JSONBuffer setDate(String name, Date value)

Adds the key/value pair to the buffer.

JSONBuffer setDates(Date[] items)

Adds the item(s) to the array node in this buffer.

JSONBuffer setDouble(String name, double double)

Adds the key/value pair to the buffer.

JSONBuffer setInt(String name, long value)

Adds the key/value pair to the buffer.

JSONBuffer setInts(long[] items)

Adds the item(s) to the array node in this buffer.

JSONBuffer setLong(String name, long value)

Adds the key/value pair to the buffer.

JSONBuffer setPayload(Payload payload)

Adds the payload to the buffer.

JSONBuffer setRecord(DataViewRecord record)

Adds the DataViewRecord to this buffer, preserving field types.

JSONBuffer setRecord(String name, DataViewRecord record)

Adds the DataViewRecord to this buffer with the given key, preserving field types.

JSONBuffer setString(String name, String value)

Adds the key/value pair to the buffer.

JSONBuffer setStrings(String[] items)

Adds the item(s) to the array node in this buffer.

JSONBuffer startArray()

Starts an array node.

JSONBuffer startObject()

Starts an object node.

String toString()

Returns the final JSON object as a string.

JSONBuffer value(String json)

Adds a JSON encoded string to this buffer.

Method Detail


JSONBuffer endArray()

Ends an array node.

Returns:  JSONBuffer

Since: 04-29-2022

top

JSONBuffer endObject()

Ends an object node.

Returns:  JSONBuffer

Since: 04-29-2022

top

JSONBuffer key(String name)

Starts an object node with the given name.

Parameters:

  • String   name Required parameter.

Returns:  JSONBuffer

Since: 04-29-2022

top

JSONBuffer preserveType(boolean boolean)

If true, Data operations will attempt to have type guessed and added accordingly (rather than being a string always).

Parameters:

  • boolean   boolean

Returns:  JSONBuffer

Since: 09-22-2023

top

JSONBuffer set(String key, String value)

Adds the key/value pair to the buffer.

Parameters:

  • String   key Required parameter.
  • String   value

Returns:  JSONBuffer

Since: 04-29-2022

top

JSONBuffer setBoolean(String name, boolean value)

Adds the key/value pair to the buffer.

Parameters:

  • String   name Required parameter.
  • boolean   value

Returns:  JSONBuffer

Since: 04-29-2022

top

JSONBuffer setBooleans(boolean[] items)

Adds the item(s) to the array node in this buffer.

Parameters:

  • boolean[]   items Required parameter.

Returns:  JSONBuffer

Since: 11-15-2023

top

JSONBuffer setData(Data data)

Adds the Data to this buffer.

Parameters:

Returns:  JSONBuffer

Since: 06-22-2022

top

JSONBuffer setData(String name, Data data)

Adds the Data to this buffer with the given key.

Parameters:

  • String   name
  • Data   data

Returns:  JSONBuffer

Since: 06-22-2022

top

JSONBuffer setDataList(DataList datalist)

Adds the datalist to the buffer.

Parameters:

  • DataList   datalist Required parameter.

Returns:  JSONBuffer

Since: 09-22-2023

top

JSONBuffer setDate(String name, Date value)

Adds the key/value pair to the buffer.

Parameters:

  • String   name Required parameter.
  • Date   value

Returns:  JSONBuffer

Since: 04-29-2022

top

JSONBuffer setDates(Date[] items)

Adds the item(s) to the array node in this buffer.

Parameters:

  • Date[]   items Required parameter.

Returns:  JSONBuffer

Since: 11-15-2023

top

JSONBuffer setDouble(String name, double double)

Adds the key/value pair to the buffer.

Parameters:

  • String   name Required parameter.
  • double   double

Returns:  JSONBuffer

Since: 04-29-2022

top

JSONBuffer setInt(String name, long value)

Adds the key/value pair to the buffer.

Parameters:

  • String   name Required parameter.
  • long   value

Returns:  JSONBuffer

Since: 04-29-2022

top

JSONBuffer setInts(long[] items)

Adds the item(s) to the array node in this buffer.

Parameters:

  • long[]   items Required parameter.

Returns:  JSONBuffer

Since: 11-15-2023

top

JSONBuffer setLong(String name, long value)

Adds the key/value pair to the buffer.

Parameters:

  • String   name Required parameter.
  • long   value

Returns:  JSONBuffer

Since: 04-29-2022

top

JSONBuffer setPayload(Payload payload)

Adds the payload to the buffer.

Parameters:

  • Payload   payload Required parameter.

Returns:  JSONBuffer

Since: 09-22-2023

top

JSONBuffer setRecord(DataViewRecord record)

Adds the DataViewRecord to this buffer, preserving field types.

Parameters:

Returns:  JSONBuffer

Since: 05-09-2022

top

JSONBuffer setRecord(String name, DataViewRecord record)

Adds the DataViewRecord to this buffer with the given key, preserving field types.

Parameters:

Returns:  JSONBuffer

Since: 05-09-2022

top

JSONBuffer setString(String name, String value)

Adds the key/value pair to the buffer.

Parameters:

  • String   name Required parameter.
  • String   value

Returns:  JSONBuffer

Since: 04-29-2022

top

JSONBuffer setStrings(String[] items)

Adds the item(s) to the array node in this buffer.

Parameters:

  • String[]   items Required parameter.

Returns:  JSONBuffer

Since: 11-15-2023

top

JSONBuffer startArray()

Starts an array node.

Returns:  JSONBuffer

Since: 04-29-2022

top

JSONBuffer startObject()

Starts an object node.

Returns:  JSONBuffer

Since: 04-29-2022

top

String toString()

Returns the final JSON object as a string.

Returns:  String

Since: 04-29-2022

top

JSONBuffer value(String json)

Adds a JSON encoded string to this buffer.

Parameters:

  • String   json

Returns:  JSONBuffer

Since: 04-29-2022

top
Copyright © 2006 - 2024, ContractPal, Inc. All rights reserved. API Date: May 01, 2024 05:15 AM