// Created by plusminus on 23:58:21 - 12.02.2009 package org.androad.sys.ors.util; public class RouteHandleIDExtractor { // =========================================================== // Constants // =========================================================== // =========================================================== // Fields // =========================================================== // =========================================================== // Constructors // =========================================================== // =========================================================== // Getter & Setter // =========================================================== // =========================================================== // Methods from SuperClass/Interfaces // =========================================================== // =========================================================== // Methods // =========================================================== public static long match(final String in){ try{ return Long.parseLong(in); }catch(final Throwable t){ return -1L; } } // =========================================================== // Inner and Anonymous Classes // =========================================================== }