- The of(int, int, int) method of LocalDate class in Java is used to create an instance of LocalDate from the input year, month and day of the month. In this method, all the three parameters are passed in the form of integer.
Syntax:
public static LocalDate of(int year, int month, int dayOfMonth)Parameters: This method accepts three parameters:- year - It is of integer type and represents the year. It varies from MIN_YEAR to MAX_YEAR.
- month - It is of integer type and represents the month of the year. It varies from 1(JANUARY) to 12(DECEMBER).
- dayOfMonth - It is of integer type and represents the day of the month. It varies from 1 to 31.
Java // Java program to demonstrate // LocalDate.of(int month) method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create LocalDate object LocalDate localdate = LocalDate.of(2020, 5, 13); // print full date System.out.println("Date: " + localdate); } }
Output:Program 2:Date: 2020-05-13
Java // Java program to demonstrate // LocalDate.of(int month) method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create LocalDate object LocalDate localdate = LocalDate.of(2020, 5, 13); // print year only System.out.println("Year: " + localdate.getYear()); } }
Output:Year: 2020
- The of(int, Month, int) method of LocalDate class in Java is used to obtain an instance of LocalDate from the input year, month and day. In this method, the parameters year and day are passed as integers but the month is passes as an instance.
Syntax:
public static LocalDate of(int year, Month month, int dayOfMonth)Parameters: This method accepts three parameters.- year - It is of integer type and represents the year. It varies from MIN_YEAR to MAX_YEAR.
- month - It is of Month type and represents the month of the year. It varies from JANUARY to DECEMBER.
- dayOfMonth - It is of integer type and represents the day of the month. It varies from 1 to 31.
Java // Java program to demonstrate // LocalDate.of(Month month) method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create LocalDate object LocalDate localdate = LocalDate.of( 2020, Month.MAY, 13); // print full date System.out.println("Date: " + localdate); } }
Output:Program 2:Date: 2020-05-13
Java // Java program to demonstrate // LocalDate.of(Month month) method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create LocalDate object LocalDate localdate = LocalDate.of( 2020, Month.MAY, 13); // print month only System.out.println("Month: " + localdate.getMonth()); } }