Here you can find the source of getYearOfPreYearWeek(int year, int week)
public static int getYearOfPreYearWeek(int year, int week)
//package com.java2s; //License from project: Apache License public class Main { public static int getYearOfPreYearWeek(int year, int week) { return week == 1 ? year - 1 : year; }//from w w w . j av a 2s. co m }