Enum ShapeLayerPass

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

    public enum ShapeLayerPass
    extends java.lang.Enum<ShapeLayerPass>
    ShapeLayer 의 PassType. Shape 이 다른 오브젝트와 겹치질 때 그려지는 우순선위를 설정한다.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      Default
      기본 PassType.
      Overlay
      지도 Overlay가 그려지는 PassType.
      Route
      RouteLine 위에 그려지는 PassType.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getValue()  
      static ShapeLayerPass valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static ShapeLayerPass[] 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

      • Default

        public static final ShapeLayerPass Default
        기본 PassType. zOrder 10000 이상을 권장하며 지도와 배경 사이에 들어갈 수 있음.
      • Overlay

        public static final ShapeLayerPass Overlay
        지도 Overlay가 그려지는 PassType. zOrder 10000 이상을 권장하며 지도 배경보다 무조건 위에 그려지고 zOrder 에 따라 특정 overlay 밑으로 내려갈 수 있다.
    • Method Detail

      • values

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

        public static ShapeLayerPass 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

        public int getValue()