El método get() de la clase OffsetDateTime en Java obtiene el valor del campo especificado de esta fecha como un int.
Sintaxis:
public int get(TemporalField field)
Parámetro: este método acepta un solo campo de parámetro que especifica el campo que se va a obtener, no nulo.
Valor devuelto: Devuelve el valor del campo.
Excepciones : la función arroja tres excepciones:
- DateTimeException : se lanza si no se puede obtener un valor para el campo o si el valor está fuera del rango de valores válidos para el campo.
- UnsupportedTemporalTypeException : se lanza si el campo no es compatible o el rango de valores excede un int
- ArithmeticException : se lanza si se produce un desbordamiento numérico
Los siguientes programas ilustran el método get() :
Programa 1:
Java
// Java program to demonstrate the get() method import java.time.OffsetDateTime; import java.time.temporal.ChronoField; public class GFG { public static void main(String[] args) { // Function used OffsetDateTime date = OffsetDateTime.parse("2017-02-03T12:30:30+01:00"); // Prints the date System.out.println(date.get(ChronoField.CLOCK_HOUR_OF_DAY)); } }
Producción:
12
Programa 2 :
Java
// Java program to demonstrate the get() method // Exceptions import java.time.OffsetDateTime; import java.time.temporal.ChronoField; public class GFG { public static void main(String[] args) { try { // Function used OffsetDateTime date = OffsetDateTime.parse("2017-13-03T12:30:30+01:00"); // Prints the date System.out.println(date.get(ChronoField.CLOCK_HOUR_OF_DAY)); } catch (Exception e) { System.out.println(e); } } }
Producción:
java.time.format.DateTimeParseException: Text '2017-13-03T12:30:30+01:00' could not be parsed: Invalid value for MonthOfYear (valid values 1 - 12): 13
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html#get-java.time.temporal.TemporalField-