com.supermap.services.tilesource

枚举 OsgbTilesetBase.S3mType

  • java.lang.Object
    • 枚举常量概要

      枚举常量 
      枚举常量和说明
      S3M 
      S3MB 
    • 方法概要

      方法 
      限定符和类型 方法和说明
      static OsgbTilesetBase.S3mType valueOf(java.lang.String name)
      返回带有指定名称的该类型的枚举常量。
      static OsgbTilesetBase.S3mType[] values()
      按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
      • 从类继承的方法 java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • 从类继承的方法 java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • 方法详细资料

      • values

        public static OsgbTilesetBase.S3mType[] values()
        
        按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。该方法可用于迭代 常量, 如下所示:
        for (OsgbTilesetBase.S3mType c : OsgbTilesetBase.S3mType.values())
            System.out.println(c);
        
      • valueOf

        public static OsgbTilesetBase.S3mType valueOf(java.lang.String name)
        
        返回带有指定名称的该类型的枚举常量。 字符串必须与用于声明该类型的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)
        参数:
        name - 要返回的枚举常量的名称。