El método getNano() de la clase OffsetDateTime en Java obtiene el campo nano de segundo.
Sintaxis:
public int getNano()
Parámetro: Este método no acepta ningún parámetro.
Valor devuelto: Devuelve el nano de segundo que va de 0 a 999, 999, 999.
Los siguientes programas ilustran el método getNano() :
Programa 1:
// Java program to demonstrate the getNano() method import java.time.OffsetDateTime; public class GFG { public static void main(String[] args) { // parses a date OffsetDateTime date = OffsetDateTime.parse("2018-12-03T12:30:30+01:00"); // Prints the nano-second of given date System.out.println("nano-second: " + date.getNano()); } }
Producción:
nano-second: 0
Programa 2 :
// Java program to demonstrate the getMonthValue() method import java.time.OffsetDateTime; public class GFG { public static void main(String[] args) { // parses a date OffsetDateTime date = OffsetDateTime.parse("2016-10-03T12:30:30+01:20"); // Prints the nano-second of given date System.out.println("nano-second: " + date.getNano()); } }
Producción:
nano-second: 0
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html#getNano–