Uses of Interface
oracle.dbtools.plugin.api.json.objects.JSONObject.Builder
-
Packages that use JSONObject.Builder Package Description oracle.dbtools.plugin.api.json.objects API for creating in memory representations of JSON object graphs (JSONObjects
) and for serializing object graphs to JSON representations. -
- <section role="region">
Uses of JSONObject.Builder in oracle.dbtools.plugin.api.json.objects
Methods in oracle.dbtools.plugin.api.json.objects that return JSONObject.Builder Modifier and Type Method Description JSONObject.Builder
JSONObject.Builder. add(java.lang.String propertyName, java.lang.Boolean value)
Add a boolean JSON propertyJSONObject.Builder
JSONObject.Builder. add(java.lang.String propertyName, java.lang.CharSequence value)
Add a String JSON propertyJSONObject.Builder
JSONObject.Builder. add(java.lang.String propertyName, java.lang.Number value)
Create a numeric JSON propertyJSONObject.Builder
JSONObject.Builder. add(java.lang.String propertyName, java.lang.Object value)
Add a property.JSONObject.Builder
JSONObject.Builder. add(java.lang.String propertyName, JSONNode value)
Add a JSON property containing another JSON documentJSONObject.Builder
JSONObject.Builder. add(JSONObject existing)
Add all the properties in the existingJSONObject
to this object.JSONObject.Builder
JSONObject.Builder. addNull(java.lang.String propertyName)
Add a null propertyJSONObject.Builder
JSONObject. modify()
Create aJSONObject.Builder
instance populated with the state of thisJSONObject
instanceJSONObject.Builder
JSONObjects. object()
Create a newJSONObject.Builder
instanceJSONObject.Builder
JSONObject.Builder. remove(java.lang.String propertyName)
Remove the named property
- <section role="region">