MCPcopy Create free account
hub / github.com/HumbleUI/JWM / next

Method next

examples/dashboard/java/Options.java:41–44  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

39 }
40
41 public String next() {
42 _idx = (_idx + 1) % size();
43 return get();
44 }
45
46 public String prev() {
47 _idx = (_idx + _options.length - 1) % _options.length;

Callers 2

acceptMethod · 0.80
acceptMethod · 0.80

Calls 2

sizeMethod · 0.95
getMethod · 0.95

Tested by

no test coverage detected