Year of(int isoYear)
creates
an instance of Year.
of
has the following syntax.
public static Year of(int isoYear)
The following example shows how to use of
.
import java.time.Year; 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.