Duration ofSeconds(long seconds) example
Description
Duration ofSeconds(long seconds)
creates
a Duration representing a number of seconds.
The nanosecond in second field is set to zero.
Syntax
ofSeconds
has the following syntax.
public static Duration ofSeconds(long seconds)
Example
The following example shows how to use ofSeconds
.
import java.time.Duration;
/*from ww w .ja va 2 s .c o m*/
public class Main {
public static void main(String[] args) {
Duration duration = Duration.ofSeconds(10);
System.out.println(duration);
}
}
The code above generates the following result.