Uses of Class
com.atlassian.jira.util.json.JSONArray
Packages that use JSONArray
Package
Description
-
Uses of JSONArray in com.atlassian.jira.onboarding.postsetup.ui
Methods in com.atlassian.jira.onboarding.postsetup.ui that return JSONArray -
Uses of JSONArray in com.atlassian.jira.sharing
Methods in com.atlassian.jira.sharing that return JSONArrayModifier and TypeMethodDescriptionstatic JSONArray
SharePermissionUtils.toJsonArray
(Collection<SharePermission> permissions) Converts the passed SharePermissions into a JSON array.Methods in com.atlassian.jira.sharing with parameters of type JSONArrayModifier and TypeMethodDescriptionSharePermissionUtils.fromJsonArray
(JSONArray array) Convert the passed array into SharePermissions. -
Uses of JSONArray in com.atlassian.jira.util.json
Methods in com.atlassian.jira.util.json that return JSONArrayModifier and TypeMethodDescriptionJSONArray.getJSONArray
(int index) Get the JSONArray associated with an index.JSONObject.getJSONArray
(String key) Get the JSONArray value associated with a key.JSONObject.names()
Produce a JSONArray containing the names of the elements of this JSONObject.JSONArray.optJSONArray
(int index) Get the optional JSONArray associated with an index.JSONObject.optJSONArray
(String key) Get an optional JSONArray associated with a key.JSONArray.put
(boolean value) Append a boolean value.JSONArray.put
(double value) Append a double value.JSONArray.put
(int value) Append an int value.JSONArray.put
(int index, boolean value) Put or replace a boolean value in the JSONArray.JSONArray.put
(int index, double value) Put or replace a double value.JSONArray.put
(int index, int value) Put or replace an int value.JSONArray.put
(int index, long value) Put or replace a long value.Put or replace an object value in the JSONArray.JSONArray.put
(int index, Collection<? extends Object> value) Put a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.JSONArray.put
(long value) Append an long value.Append an object value.JSONArray.put
(Collection<Object> value) Put a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.JSONObject.toJSONArray
(JSONArray names) Produce a JSONArray containing the values of the members of this JSONObject.Methods in com.atlassian.jira.util.json with parameters of type JSONArrayModifier and TypeMethodDescriptionJSONObject.toJSONArray
(JSONArray names) Produce a JSONArray containing the values of the members of this JSONObject.JSONArray.toJSONObject
(JSONArray names) Produce a JSONObject by combining a JSONArray of names with the values of this JSONArray.