OffsetDateTime withYear(int year) example

Description

OffsetDateTime withYear(int year) returns a copy of this OffsetDateTime with the year altered.

Syntax

withYear has the following syntax.


public OffsetDateTime withYear(int year)

Example

The following example shows how to use withYear.


import java.time.OffsetDateTime;
/* w  w w  . ja va  2s.c om*/
public class Main {
  public static void main(String[] args) {
    OffsetDateTime o = OffsetDateTime.now();
    OffsetDateTime d = o.withYear(2010);
    System.out.println(d);
  }
}

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