获取本周的阳历日期列表(仅限当月) @return 本周的阳历日期列表(仅限当月)
()
| 285 | * @return 本周的阳历日期列表(仅限当月) |
| 286 | */ |
| 287 | public List<Solar> getDaysInMonth() { |
| 288 | List<Solar> days = this.getDays(); |
| 289 | List<Solar> l = new ArrayList<Solar>(); |
| 290 | for (Solar day : days) { |
| 291 | if (month != day.getMonth()) { |
| 292 | continue; |
| 293 | } |
| 294 | l.add(day); |
| 295 | } |
| 296 | return l; |
| 297 | } |
| 298 | |
| 299 | @Override |
| 300 | public String toString() { |