Enum TransitVehicle.TransitVehicleType

    • Field Detail

      • TRANSIT_VEHICLE_TYPE_UNSPECIFIED_VALUE

        public static final int TRANSIT_VEHICLE_TYPE_UNSPECIFIED_VALUE
         Unused.
         
        TRANSIT_VEHICLE_TYPE_UNSPECIFIED = 0;
        See Also:
        Constant Field Values
      • CABLE_CAR_VALUE

        public static final int CABLE_CAR_VALUE
         A vehicle that operates on a cable, usually on the ground. Aerial cable
         cars may be of the type `GONDOLA_LIFT`.
         
        CABLE_CAR = 2;
        See Also:
        Constant Field Values
      • COMMUTER_TRAIN_VALUE

        public static final int COMMUTER_TRAIN_VALUE
         Commuter rail.
         
        COMMUTER_TRAIN = 3;
        See Also:
        Constant Field Values
      • FUNICULAR_VALUE

        public static final int FUNICULAR_VALUE
         A vehicle that is pulled up a steep incline by a cable. A Funicular
         typically consists of two cars, with each car acting as a counterweight
         for the other.
         
        FUNICULAR = 5;
        See Also:
        Constant Field Values
      • GONDOLA_LIFT_VALUE

        public static final int GONDOLA_LIFT_VALUE
         An aerial cable car.
         
        GONDOLA_LIFT = 6;
        See Also:
        Constant Field Values
      • HEAVY_RAIL_VALUE

        public static final int HEAVY_RAIL_VALUE
         Heavy rail.
         
        HEAVY_RAIL = 7;
        See Also:
        Constant Field Values
      • HIGH_SPEED_TRAIN_VALUE

        public static final int HIGH_SPEED_TRAIN_VALUE
         High speed train.
         
        HIGH_SPEED_TRAIN = 8;
        See Also:
        Constant Field Values
      • INTERCITY_BUS_VALUE

        public static final int INTERCITY_BUS_VALUE
         Intercity bus.
         
        INTERCITY_BUS = 9;
        See Also:
        Constant Field Values
      • LONG_DISTANCE_TRAIN_VALUE

        public static final int LONG_DISTANCE_TRAIN_VALUE
         Long distance train.
         
        LONG_DISTANCE_TRAIN = 10;
        See Also:
        Constant Field Values
      • METRO_RAIL_VALUE

        public static final int METRO_RAIL_VALUE
         Light rail transit.
         
        METRO_RAIL = 11;
        See Also:
        Constant Field Values
      • MONORAIL_VALUE

        public static final int MONORAIL_VALUE
         Monorail.
         
        MONORAIL = 12;
        See Also:
        Constant Field Values
      • OTHER_VALUE

        public static final int OTHER_VALUE
         All other vehicles.
         
        OTHER = 13;
        See Also:
        Constant Field Values
      • SHARE_TAXI_VALUE

        public static final int SHARE_TAXI_VALUE
         Share taxi is a kind of bus with the ability to drop off and pick up
         passengers anywhere on its route.
         
        SHARE_TAXI = 15;
        See Also:
        Constant Field Values
      • SUBWAY_VALUE

        public static final int SUBWAY_VALUE
         Underground light rail.
         
        SUBWAY = 16;
        See Also:
        Constant Field Values
      • TRAM_VALUE

        public static final int TRAM_VALUE
         Above ground light rail.
         
        TRAM = 17;
        See Also:
        Constant Field Values
      • TROLLEYBUS_VALUE

        public static final int TROLLEYBUS_VALUE
         Trolleybus.
         
        TROLLEYBUS = 18;
        See Also:
        Constant Field Values
    • Method Detail

      • values

        public static TransitVehicle.TransitVehicleType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (TransitVehicle.TransitVehicleType c : TransitVehicle.TransitVehicleType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TransitVehicle.TransitVehicleType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getNumber

        public final int getNumber()
        Specified by:
        getNumber in interface com.google.protobuf.Internal.EnumLite
        Specified by:
        getNumber in interface com.google.protobuf.ProtocolMessageEnum
      • valueOf

        @Deprecated
        public static TransitVehicle.TransitVehicleType valueOf​(int value)
        Deprecated.
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        value - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • forNumber

        public static TransitVehicle.TransitVehicleType forNumber​(int value)
        Parameters:
        value - The numeric wire value of the corresponding enum entry.
        Returns:
        The enum associated with the given numeric wire value.
      • getValueDescriptor

        public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
        Specified by:
        getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptorForType

        public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptor

        public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
      • valueOf

        public static TransitVehicle.TransitVehicleType valueOf​(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        desc - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null