All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.netex.mapping.DurationMapper Maven / Gradle / Ivy

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