Enum Class BorderType

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

public enum BorderType extends Enum<BorderType>
This enum defines the supported values of the border_type="*" attribute of OSM. See the definition of border_type on the OpenStreetMap wiki.
Author:
Andrew Pavlin, KA2DDO
  • Enum Constant Details

  • Method Details

    • values

      public static BorderType[] 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 BorderType 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
    • getAdminLevel

      public byte getAdminLevel()
      Gets the numeric administrative level that is associated with this level of border.
      Returns:
      byte-sized integer value defining the relative rank of this level of border type.
    • value

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