Reference×
Reference
- [] (array access)
- = (assign)
- catch
- class
- , (comma)
- // (comment)
- {} (curly braces)
- /** */ (doc comment)
- . (dot)
- draw()
- exit()
- extends
- false
- final
- implements
- import
- loop()
- /* */ (multiline comment)
- new
- noLoop()
- null
- () (parentheses)
- popStyle()
- pop()
- public
- private
- pushStyle()
- push()
- return
- redraw()
- ; (semicolon)
- setResizable()
- setLocation()
- setTitle()
- setup()
- static
- super
- this
- true
- thread()
- void
- try
Name
setInt()
Class
JSONObject
Description
Inserts a new key/int pair into the JSONObject or, if a value with the specified key already exists, assigns a new value.
Examples
JSONObject json; void setup() { json = new JSONObject(); json.setInt("count", 88); json.setFloat("weight", 35.432); json.setString("name", "celery"); json.setBoolean("isFruit", false); int count = json.getInt("count"); float weight = json.getFloat("weight"); String name = json.getString("name"); boolean isFruit = json.getBoolean("isFruit"); println(count + ", " + weight + ", " + name + ", " + isFruit); } // Sketch prints: // 88, 35.432, celery, false
Syntax
.setInt(key, value)
Parameters
key
(String)
a key stringvalue
(int)
the value to assign
Return
JSONObject

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.