List of usage examples for java.time Year format
public String format(DateTimeFormatter formatter)
From source file:Main.java
public static void main(String[] args) { Year y = Year.of(2014); String l = y.format(DateTimeFormatter.ofPattern("yyyy")); System.out.println(l);//from w w w. ja va 2s .co m }