The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

jira plugin multiselect returns string instead of String[]

AbrahamA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
February 23, 2016

Hi All

I am developing JIRA plugin version 6.4.7

In atlassian-plugin.xml i have defined a field as multiselect.

I am reading like this:

final String[] stats = (String[])map.get("Stats");

If I just select one element from multiselect it returns me a String instead of String[] and my program is getting into trouble.

Any suggestions on how to handle this issue. Please let me know.

Thanks

Abe

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

0 votes
Answer accepted
Vasiliy Zverev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
February 23, 2016

Try to use this way to initialise massive:

final String[] stats = { map.get("Stats") };

See this for explanation:http://stackoverflow.com/questions/5387643/array-initialization-syntax-when-not-in-a-declaration

TAGS
AUG Leaders

Atlassian Community Events