Subversion Repositories display

Rev

Rev 323 | Blame | Compare with Previous | Last modification | View Log | RSS feed

/*
 * Copyright (C) 2014 Steve Ratcliffe
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 3 or
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

package test.util;

/**
 * Routing access bits.
 *
 * @author Steve Ratcliffe
 */

public interface AccessBits {
        public static final int NOCAR       = 0x0001;
        public static final int NOBUS       = 0x0002;
        public static final int NOTAXI      = 0x0004;
        public static final int NOCARPOOL   = 0x0008;
        public static final int NOFOOT      = 0x0010;
        public static final int NOBIKE      = 0x0020;
        public static final int NOTRUCK     = 0x0040;
        public static final int NO_THROUGH_ROUTING = 0x0080;

        public static final int NOEMERGENCY = 0x8000;
        public static final int NODELIVERY  = 0x4000;
}