I would like to append double quotes to strings in an array and then later join them as a single string (retaining the quotes). Is there any String library which does this?
Add the quotes along with the separator and then append the quotes to the front and back.
"\"" + Joiner.on("\",\"").join(values) + "\""