What Java library object encapsulate a number and `TimeUnit`?

Viewed 883

I want to pass around a time number and the TimeUnit it is in.

long number = some number;
TimeUnit timeUnit = some arbitrary time unit

What can hold both the time and timeUnit in one Object from the Java libraries?

3 Answers
Related