// Created by plusminus on 22:01:49 - 16.10.2008 package org.androad.sys.ors.adt.rs; public enum RoutePreferenceType { // =========================================================== // Constants // =========================================================== FASTEST("Fastest"), SHORTEST("Shortest"), PEDESTRIAN("Pedestrian"), BICYCLE("Bicycle"); // =========================================================== // Fields // =========================================================== public final String mDefinedName; // =========================================================== // Constructors // =========================================================== RoutePreferenceType(final String aDefinedName){ this.mDefinedName = aDefinedName; } // =========================================================== // Getter & Setter // =========================================================== // =========================================================== // Methods from SuperClass/Interfaces // =========================================================== // =========================================================== // Methods // =========================================================== // =========================================================== // Inner and Anonymous Classes // =========================================================== }