List of usage examples for java.time Year minus
@Override public Year minus(long amountToSubtract, TemporalUnit unit)
From source file:Main.java
public static void main(String[] args) { Year y = Year.of(2014); Year l = y.minus(12, ChronoUnit.WEEKS); System.out.println(l);/*from w w w. j a v a 2 s. co m*/ }