Return this dictionary as a String in JSON format.
()
| 832 | * Return this dictionary as a String in JSON format. |
| 833 | */ |
| 834 | public String toJSON() { |
| 835 | StringList items = new StringList(); |
| 836 | for (int i = 0; i < count; i++) { |
| 837 | items.append(JSONObject.quote(keys[i])+ ": " + values[i]); |
| 838 | } |
| 839 | return "{ " + items.join(", ") + " }"; |
| 840 | } |
| 841 | |
| 842 | |
| 843 | @Override |