Java LocalDate Create getLocalDate(int year, int atDay)

Here you can find the source of getLocalDate(int year, int atDay)

Description

get Local Date

License

Open Source License

Declaration

public static void getLocalDate(int year, int atDay) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.time.LocalDate;
import java.time.Year;

public class Main {
    public static void getLocalDate(int year, int atDay) {
        LocalDate date = Year.of(year).atDay(atDay);
        //         System.out.println(date);  
    }/*  w w  w .  j av  a  2  s  .  c om*/
}

Related

  1. getCurrentLocalDate()
  2. getCurrentLocalDate()
  3. getCurrentLocalDate()
  4. getLocalDate(java.util.Date date)
  5. getLocalDate(long timeInMillis)
  6. toLocalDate(Calendar calendar)
  7. toLocalDate(final Date date)