Enum Class Cycleway

java.lang.Object
java.lang.Enum<Cycleway>
org.ka2ddo.yaac.osm.Cycleway
All Implemented Interfaces:
Serializable, Comparable<Cycleway>, Constable

public enum Cycleway extends Enum<Cycleway>
Supported types of the OSM cycleway="*" attribute. See the definition of cycleway on the OpenStreetMap wiki.
Author:
Andrew Pavlin, KA2DDO
  • Enum Constant Details

    • track

      public static final Cycleway track
  • Method Details

    • values

      public static Cycleway[] 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 Cycleway 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
    • wayType

      public WayType wayType()
      Report the WayType for rendering this type of Way.
      Returns:
      WayType
    • value

      public static Cycleway value(String name)
      Get the enum value associated with the string name specified.
      Parameters:
      name - String to convert into an Enum
      Returns:
      Highway for the string name, or null if no match