
org.opentripplanner.netex.mapping.DurationMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
The newest version!
package org.opentripplanner.netex.mapping;
import java.time.Duration;
/**
* Utility class to help map {@link Duration} class.
*/
class DurationMapper {
static int mapDurationToSec(Duration duration, int defaultValue) {
return duration == null ? defaultValue : (int) duration.toSeconds();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy