(PlainTimestamp entity)
| 63 | //~ Methoden ---------------------------------------------------------- |
| 64 | |
| 65 | @Override |
| 66 | public PlainTimestamp apply(PlainTimestamp entity) { |
| 67 | |
| 68 | PlainTime oldTime = entity.getWallTime(); |
| 69 | |
| 70 | if (this.value.isSimultaneous(oldTime)) { |
| 71 | return this.handleSameTimes(entity); |
| 72 | } else if (this.value.getHour() == 24) { |
| 73 | return this.handleMidnight24(entity); |
| 74 | } else if (this.value.isAfter(oldTime)) { |
| 75 | return this.handleLater(entity); |
| 76 | } else { |
| 77 | return this.handleEarlier(entity); |
| 78 | } |
| 79 | |
| 80 | } |
| 81 | |
| 82 | @Override |
| 83 | ChronoOperator<PlainTimestamp> onTimestamp() { |
nothing calls this directly
no test coverage detected