
org.opentripplanner.apis.gtfs.mapping.NumberMapper Maven / Gradle / Ivy
The newest version!
package org.opentripplanner.apis.gtfs.mapping;
import javax.annotation.Nullable;
/**
* Maps a nullable {@link Nullable} to a nullable {@link Double}.
*/
public class NumberMapper {
@Nullable
public static Double toDouble(@Nullable Number input) {
if (input != null) {
return input.doubleValue();
} else {
return null;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy