cancel
Showing results for 
Search instead for 
Did you mean: 

String array as process variable

ageen
Champ in-the-making
Champ in-the-making
I have an array of String, and need to store as process variable, is that any way to achieve this?

Thanks.
1 REPLY 1

frederikherema1
Star Contributor
Star Contributor
You can store all objects that are Serializable as a process-variable. Since an array is also an object in Java (although not explicit) it's implementing Serializable. So just passing the array as variable will do.

When not using Strings as array elements, make sure the elements itself are also serializable…