getYearInChinese method

String getYearInChinese()

Implementation

String getYearInChinese() {
  String y = getYear().toString();
  String s = '';
  for (int i = 0, j = y.length; i < j; i++) {
    s += LunarUtil.NUMBER[y.codeUnitAt(i) - 48];
  }
  return s;
}