(DatePlus datePlus)
| 400 | } |
| 401 | |
| 402 | public long ofNanos(DatePlus datePlus) { |
| 403 | return ofDateTime(ChronoUnit.NANOS, datePlus); |
| 404 | } |
| 405 | |
| 406 | public long ofDateTime(ChronoUnit chronoUnit, DatePlus datePlus) { |
| 407 | return -chronoUnit.between(this.localDateTime, datePlus.localDateTime); |
nothing calls this directly
no test coverage detected