Toggle navigation
Home
java.time.Instant to java.util.Optional<java.time.Instant>
No. of Instances - 14
No. of Commits - 3
No. of Projects - {'graphhopper', 'cryptomator', 'james-project'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Jdk
Mapping:
Other
creationTime
to
creationTime
Add or Remove Method invocation
Date.from(updatedDeparture)
to
updatedDeparture.map(Date::from).orElse(Date.from(plannedDeparture))
getArrivalDelay(stopSequence)
to
delay
arrivalTimeFromHopEdge.plus(delay,SECONDS)
to
getArrivalDelay(stopSequence).map(delay -> arrivalTimeFromHopEdge.plus(delay,SECONDS))
Date.from(updatedArrival)
to
updatedArrival.map(Date::from).orElse(Date.from(arrivalTimeFromHopEdge))
Date.from(updatedDeparture)
to
updatedDeparture.map(Date::from).orElse(Date.from(plannedDeparture))
Date.from(updatedArrival)
to
updatedArrival.map(Date::from).orElse(Date.from(arrivalTimeFromHopEdge))
Date.from(updatedArrival)
to
updatedArrival.map(Date::from).orElse(Date.from(arrivalTimeFromHopEdge))
Date.from(updatedDeparture)
to
updatedDeparture.map(Date::from).orElse(Date.from(plannedDeparture))
Wrap or Un-wrap
add
to
add
add
to
add
add
to
add
add
to
add