ZonedDateTime getMonth() method in Java with Examples
The getMonth() method of a ZonedDateTime class is used to get month-of-year field using the Month enum from this ZonedDateTime. If you need access to the primitive int value then the enum provides the int value.
Syntax:
public Month getMonth()
Parameters: This method does not take any parameters.
Return value: This method returns an enum Month representing the month-of-year.
Below programs illustrate the getMonth() method:
Program 1:
// Java program to demonstrate // ZonedDateTime.getMonth() method import java.time.*; public class GFG { public static void main(String[] args) { // create a ZonedDateTime object ZonedDateTime zoneddatetime = ZonedDateTime.parse( "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]" ); // get month field Month value = zoneddatetime.getMonth(); // print result System.out.println( "month:" + value); } } |
Output:
month:DECEMBER
Program 2:
// Java program to demonstrate // ZonedDateTime.getMonth() method import java.time.*; public class GFG { public static void main(String[] args) { // create a ZonedDateTime object ZonedDateTime zoneddatetime = ZonedDateTime.parse( "2018-10-25T23:12:38.543+02:00[Europe/Paris]" ); // get month field Month value = zoneddatetime.getMonth(); // print result System.out.println( "month:" + value); } } |
Output:
month:OCTOBER
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/ZonedDateTime.html#getMonth()
Please Login to comment...