Having a list of enum value, I need to convert it to a single string separated by some character.
enum Level {
LOW,
MEDIUM,
HIGH
}
Set<Level> levels = new HashSet<>(Arrays.asList(Level.LOW, Level.HIGH));
The expected result :
String result = "LOW, HIGH"
Is there a String.join
for enum?