Enum Class ParkingSideRegulation

java.lang.Object
java.lang.Enum<ParkingSideRegulation>
com.here.sdk.mapdata.ParkingSideRegulation
All Implemented Interfaces:
Serializable, Comparable<ParkingSideRegulation>, Constable

public enum ParkingSideRegulation extends Enum<ParkingSideRegulation>

The regulations for parking on the side of the road.

  • Enum Constant Details

    • BOTH_SIDES_ONE_WAY_ROAD

      public static final ParkingSideRegulation BOTH_SIDES_ONE_WAY_ROAD

      Parking is allowed on both sides of one-way road.

    • OPPOSITE_LANE_TWO_WAY_ROAD

      public static final ParkingSideRegulation OPPOSITE_LANE_TWO_WAY_ROAD

      Parking is allowed on opposite lane when a road is bi-directional, one lane in each.

  • Method Details

    • values

      public static ParkingSideRegulation[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ParkingSideRegulation valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null