Year of(int isoYear) example

Description

Year of(int isoYear) creates an instance of Year.

Syntax

of has the following syntax.


public static Year of(int isoYear)

Example

The following example shows how to use of.


import java.time.Year;
// www.ja v  a  2s  .  c om
public class Main {
  public static void main(String[] args) {
    Year y = Year.of(2014);
    System.out.println(y);

  }
}

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