Enum MapOverlay

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<MapOverlay>

    public enum MapOverlay
    extends java.lang.Enum<MapOverlay>
    기본적으로 제공하는 지도 위에 올라가는 부가정보 오버레이 Enum 클래스.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static MapOverlay getEnum​(java.lang.String value)  
      java.lang.String getValue()  
      static MapOverlay valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static MapOverlay[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • ROADVIEW_LINE

        public static final MapOverlay ROADVIEW_LINE
        로드뷰 라인
      • HILLSHADING

        public static final MapOverlay HILLSHADING
        지형도
      • BICYCLE_ROAD

        public static final MapOverlay BICYCLE_ROAD
        자전거도로 라인
      • SKYVIEW_HYBRID

        public static final MapOverlay SKYVIEW_HYBRID
        스카이뷰 용 도로라인
    • Method Detail

      • values

        public static MapOverlay[] 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 (MapOverlay c : MapOverlay.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MapOverlay valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getValue

        @NonNull
        public java.lang.String getValue()
      • getEnum

        @NonNull
        public static MapOverlay getEnum​(java.lang.String value)