Last Updated : 01 May, 2019
The
get()method of
ZonedDateTimeclass in Java is used to get the value of the specified field passed as input from this ZonedDateTime as an integer.This method queries this ZonedDateTime for the value of the field and the returned value will always be within the valid range of values for the field. When the field is not supported and the method is unable to return int value then an exception is thrown.
Syntax:public int get(TemporalField field)Parameters:
This method accepts a single parameter
fieldwhich represents the field to get.
Return value:This method returns an
intvalue for the field.
Exception:This method throws following exceptions:
Below programs illustrate the get() method:
Program 1: Java
// Java program to demonstrate
// ZonedDateTime.get() method
import java.time.*;
import java.time.temporal.ChronoField;
public class GFG {
public static void main(String[] args)
{
// create a ZonedDateTime object
ZonedDateTime zonedDT
= ZonedDateTime.parse("2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
// apply get() method
int result = zonedDT.get(ChronoField.NANO_OF_SECOND);
// print result
System.out.println("Value: "
+ result);
}
}
Program 2: Java
// Java program to demonstrate
// ZonedDateTime.get() method
import java.time.*;
import java.time.temporal.ChronoField;
public class GFG {
public static void main(String[] args)
{
// create a ZonedDateTime object
ZonedDateTime zonedDT
= ZonedDateTime.parse("2018-10-25T23:12:31.123+02:00[Europe/Paris]");
// apply get() method
int result = zonedDT.get(ChronoField.MILLI_OF_SECOND);
// print result
System.out.println("Value: "
+ result);
}
}
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/ZonedDateTime.html#get(java.time.temporal.TemporalField)
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4