JsonBuilder |
JsonBuilder.append(Object object) |
Deprecated.
Append the given object to the JSON string builder.
|
JsonBuilder |
JsonBuilder.append(String name,
Object value) |
Deprecated.
Append the given name and value to the JSON string builder.
|
JsonBuilder |
JsonBuilder.appendArray(Collection collection) |
Deprecated.
Append the given collection to the JSON string builder as JSON array.
|
JsonBuilder |
JsonBuilder.appendResultSet(ResultSet resultSet) |
Deprecated.
Append the given ResultSet to the JSON string builder as JSON array.
|
JsonBuilder |
JsonBuilder.appendResultSetRow(ResultSet resultSet) |
Deprecated.
Append a single row from the given ResultSet to the JSON string builder as JSON array.
|
JsonBuilder |
JsonBuilder.closeArray() |
Deprecated.
Close a JSON array by appending the ']' character.
|
JsonBuilder |
JsonBuilder.closeObject() |
Deprecated.
Close a JSON object by appending the '}' character.
|
JsonBuilder |
JsonBuilder.openArray() |
Deprecated.
Open a JSON array by appending the '[' character.
|
JsonBuilder |
JsonBuilder.openObject() |
Deprecated.
Open a JSON object by appending the '{' character.
|