Duration getNano()
gets the number of nanoseconds
within the second in this duration.
getNano
has the following syntax.
public int getNano()
The following example shows how to use getNano
.
import java.time.Duration; import java.time.LocalTime; public class Main { public static void main(String[] args) { Duration duration = Duration.between(LocalTime.MIDNIGHT,LocalTime.NOON); System.out.println(duration.getNano()); } }
The code above generates the following result.