Converts a constant name to an enum
All 3 scenarios hold
The parameter type decides which enum to search — TimeUnit in this table.
expected outcome
broken scenario
| Scenario | Input value | Parameter type? | TimeUnit seconds per unit? |
|---|---|---|---|
| Second | SECONDS | java.util.concurrent.TimeUnit | 1 |
| Minute | MINUTES | java.util.concurrent.TimeUnit | 60 |
| Hour | HOURS | java.util.concurrent.TimeUnit | 3600 |