()
| 320 | * @return next weekday |
| 321 | */ |
| 322 | public Weekday next() { |
| 323 | |
| 324 | int index = this.ordinal() + 1; |
| 325 | if (index == 7) { |
| 326 | index = 0; |
| 327 | } |
| 328 | return ENUMS[index]; |
| 329 | |
| 330 | } |
| 331 | |
| 332 | /** |
| 333 | * <p>Rolls to the previous day of week. </p> |
no outgoing calls
no test coverage detected