Duration ofSeconds(long seconds, long nanoAdjustment)
creates
a Duration representing a number of seconds and an adjustment in nanoseconds.
ofSeconds
has the following syntax.
public static Duration ofSeconds(long seconds, long nanoAdjustment)
The following example shows how to use ofSeconds
.
import java.time.Duration; 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.