获取非正式的节日,有可能一天会有多个节日 @return 非正式的节日列表,如中元节
()
| 435 | * @return 非正式的节日列表,如中元节 |
| 436 | */ |
| 437 | public List<String> getOtherFestivals() { |
| 438 | List<String> l = new ArrayList<String>(); |
| 439 | List<String> fs = SolarUtil.OTHER_FESTIVAL.get(month + "-" + day); |
| 440 | if (null != fs) { |
| 441 | l.addAll(fs); |
| 442 | } |
| 443 | return l; |
| 444 | } |
| 445 | |
| 446 | /** |
| 447 | * 获取星座 |