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

org.osmtools.utils.OsmUtils Maven / Gradle / Ivy

The newest version!
package org.osmtools.utils;

public class OsmUtils {

	public static long parseLongSafe(String s) {
		try {
			return Long.parseLong(s);
		}
		catch (Exception e) {
			return 0;
		}
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy