Enum MapCoordType

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

    public enum MapCoordType
    extends java.lang.Enum<MapCoordType>
    좌표 체계의 타입들.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      Undefined  
      WCONG
      WCONG 좌표.
      WGS84
      WGS84 경위도, GPS가 사용하는 좌표계 예: 37.394660, 127.111182
      WTM
      WTM 좌표.
    • Method Summary

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

      • WCONG

        public static final MapCoordType WCONG
        WCONG 좌표.
      • WTM

        public static final MapCoordType WTM
        WTM 좌표. 중부원점(GRS80) 예: 209845.113673, 432818.654563
      • WGS84

        public static final MapCoordType WGS84
        WGS84 경위도, GPS가 사용하는 좌표계 예: 37.394660, 127.111182
    • Method Detail

      • values

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

        public static MapCoordType 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()
      • getEnum

        public static MapCoordType getEnum​(int value)