I am working on converting an enumset into a string of values that are in the enumset. At the moment, I am using Joiner.on(',').join(enumset))
to create a string of values. However, I am wondering what are the ordering guarantees that enumset provides?
Thanks!!