获取公历对象 @return 公历对象
()
| 519 | * @return 公历对象 |
| 520 | */ |
| 521 | public Solar toSolar() { |
| 522 | Lunar lunar = new Lunar(this.getYear(), this.getMonth(), this.getDayOfMonth()); |
| 523 | return ToolLunar.lunartosolar(lunar); |
| 524 | } |
| 525 | |
| 526 | private static final DateTimeFormatter DEFAULT_DATE_TIME_FORMATTER = ToolDatePlus.pattern("yyyy-MM-dd HH:mm:ss:SSS"); |
| 527 |
nothing calls this directly
no test coverage detected