Java Get Next Enum

[Solved] Java Get Next Enum | Java - Code Explorer | yomemimo.com
Question : java get next enum

Answered by : zwazel

public static enum A { X, Y, Z; private static A[] vals = values(); public A next() { return vals[(this.ordinal()+1) % vals.length]; }
}

Source : https://stackoverflow.com/a/17006263 | Last Update : Sun, 30 May 21

Answers related to java get next enum

Code Explorer Popular Question For Java