LocalDate getDayOfYear() example

Description

LocalDate getDayOfYear() gets the day-of-year field. This method returns the primitive int value for the day-of-year.

Syntax

getDayOfYear has the following syntax.


public int getDayOfYear()

Example

The following example shows how to use getDayOfYear.


import java.time.LocalDate;
// w  ww . j  a  v  a 2s.  c  o  m
public class Main {
  public static void main(String[] args) {
    LocalDate a = LocalDate.of(2014, 6, 30);

    System.out.println(a.getDayOfYear());
  }
}

The code above generates the following result.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset