OffsetDateTime withDayOfYear() method in Java with examples Last Updated : 17 Dec, 2018 Comments Improve Suggest changes Like Article Like Report The withDayOfYear() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the year-of-month altered as specified in the parameter. Syntax: public OffsetDateTime withDayOfYear(int dayOfYear) Parameter: This method accepts a single parameter dayOfYear which specifies the day-of-year to be set in the result which can range from 1 to 365-366. Return Value: It returns a OffsetDateTime based on this date with the requested day of year and not null. Exceptions: The program throws a DateTimeException when the day-of-year value is invalid or if the day-of-year is invalid for the month of that particular year. Below programs illustrate the withDayOfYear() method: Program 1: Java // Java program to demonstrate the withDayOfYear() method import java.time.OffsetDateTime; import java.time.ZonedDateTime; public class GFG { public static void main(String[] args) { // Parses the date1 OffsetDateTime date1 = OffsetDateTime .parse( "2018-12-12T13:30:30+05:00"); // Prints dates System.out.println("Date1: " + date1); // Changes the day of year System.out.println("Date1 after altering day-of-year: " + date1.withDayOfYear(32)); } } Output: Date1: 2018-12-12T13:30:30+05:00 Date1 after altering day-of-year: 2018-02-01T13:30:30+05:00 Program 2: Java // Java program to demonstrate the withDayOfYear() method import java.time.OffsetDateTime; public class GFG { public static void main(String[] args) { try { // Parses the date1 OffsetDateTime date1 = OffsetDateTime .parse( "2018-12-12T13:30:30+05:00"); // Prints dates System.out.println("Date1: " + date1); // Changes the day of year System.out.println("Date1 after altering day-of-year: " + date1.withDayOfYear(367)); } catch (Exception e) { System.out.println("Exception: " + e); } } } Output: Date1: 2018-12-12T13:30:30+05:00 Exception: java.time.DateTimeException: Invalid value for DayOfYear (valid values 1 - 365/366): 367 Reference: https://docs.oracle.com/javase/10/docs/api/java/time/OffsetDateTime.html#withDayOfYear(int) Comment More infoAdvertise with us Next Article OffsetDateTime withDayOfYear() method in Java with examples gopaldave Follow Improve Article Tags : Java Java-Functions Java-time package Java-OffsetDateTime Practice Tags : Java Similar Reads OffsetDateTime withYear() method in Java with examples The withYear() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the year altered as specified in the parameter. Syntax: public OffsetDateTime withYear(int year) Parameter: This method accepts a single parameter year which specifies the year to be set in the result wh 2 min read OffsetDateTime withDayOfMonth() method in Java with examples The withDayOfMonth() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the day-of-month altered as specified in the parameter. Syntax: public OffsetDateTime withDayOfMonth(int dayOfMonth) Parameter: This method accepts a single parameter dayOfMonth which specifies the 2 min read OffsetDateTime withHour() method in Java with examples The withHour() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the hour of the day altered as specified in the parameter. Syntax: public OffsetDateTime withHour(int hour) Parameter: This method accepts a single parameter hour which specifies the hour of the day to b 2 min read OffsetDateTime withNano() method in Java with examples The withNano() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the nano-of-second altered as specified in the parameter. Syntax: public OffsetDateTime withNano(int nanoOfSecond) Parameter: This method accepts a single parameter nanaOfSecond which specifies the nano- 2 min read OffsetDateTime with() Method in Java with Examples In OffsetDateTime class, there are two types of with() method depending upon the parameters passed to it. with(TemporalAdjuster adjuster) with(TemporalAdjuster adjuster) method of the OffsetDateTime class used to adjusted this OffsetDateTime using TemporalAdjuster and after adjustment returns the co 3 min read OffsetDateTime withMonth() method in Java with examples The withMonth() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the month-of-year altered as specified in the parameter. Syntax: public OffsetDateTime withMonth(int month) Parameter: This method accepts a single parameter month which specifies the month-of-year to b 2 min read OffsetDateTime withMinute() method in Java with examples The withMinute() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the hour of the day altered as specified in the parameter. Syntax: public OffsetDateTime withMinute(int minute) Parameter: This method accepts a single parameter minute which specifies the minute-of-ho 2 min read OffsetDateTime until() Method in Java with Examples until() method of the OffsetDateTime class used to calculate the amount of time between two OffsetDateTime objects using TemporalUnit. The start and end points are this and the specified OffsetDateTime passed as a parameter. The result will be negative if the end is before the start. The calculation 2 min read OffsetDateTime of() method in Java with Examples The of(int year, int month, int day, int hour, int minute, int second, int nanosecond, ZoneOffset offset) method of the OffsetDateTime class in Java is used to create an instance of OffsetDateTime from the passed values of year, month, day, hour, minute, second, nanosecond and offset. In this method 3 min read OffsetDateTime get() method in Java with examples The get() method of OffsetDateTime class in Java gets the value of the specified field from this date as an int. Syntax : public int get(TemporalField field) Parameter : This method accepts a single parameter field which specifies the field to get, not null.Return Value: It returns the value for the 2 min read Like