Enum Class Footway

java.lang.Object
java.lang.Enum<Footway>
com.graphhopper.routing.ev.Footway
All Implemented Interfaces:
Serializable, Comparable<Footway>, Constable

public enum Footway extends Enum<Footway>
  • Enum Constant Details

    • MISSING

      public static final Footway MISSING
    • SIDEWALK

      public static final Footway SIDEWALK
    • CROSSING

      public static final Footway CROSSING
    • ACCESS_AISLE

      public static final Footway ACCESS_AISLE
    • TRAFFIC_ISLAND

      public static final Footway TRAFFIC_ISLAND
    • ALLEY

      public static final Footway ALLEY
  • Field Details

  • Method Details

    • values

      public static Footway[] 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 Footway 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
    • create

      public static EnumEncodedValue<Footway> create()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Footway>
    • find

      public static Footway find(String name)