toFullString method
Implementation
String toFullString() {
String s = toYmdHms();
if (isLeapYear()) {
s += ' 闰年';
}
s += ' 星期' + getWeekInChinese();
List<String> festivals = getFestivals();
for (int i = 0, j = festivals.length; i < j; i++) {
s += ' (' + festivals[i] + ')';
}
s += ' ' + getXingZuo() + '座';
return s;
}