com.supermap.services.rest.encoders

类 SceneZipEncoder



  • public class SceneZipEncoder
    extends SceneEncoder
    
    三维资源的zip表述 实际上就是scene.xml的压缩版本
    • 方法概要

      方法 
      限定符和类型 方法和说明
      protected java.util.List<MediaType> createSupportedMediaTypes()
      创建支持的媒体类型,这里是 scenezip 类型。
      Representation toRepresentation(MediaType mediaType, java.lang.Object content)
      将 XML 字符串序列化为基于 DOM 的 XML 表述。
      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 构造器详细资料

      • SceneZipEncoder

        public SceneZipEncoder()
        
    • 方法详细资料

      • createSupportedMediaTypes

        protected java.util.List<MediaType> createSupportedMediaTypes()
        

        创建支持的媒体类型,这里是 scenezip 类型。

        即 SceneZipEncoder 支持将格式化的对象转换为什么媒体类型的表述。

        覆盖:
        createSupportedMediaTypes 在类中 SceneEncoder
        返回:
        媒体类型列表。
      • toRepresentation

        public Representation toRepresentation(MediaType mediaType,
                                      java.lang.Object content)
        

        将 XML 字符串序列化为基于 DOM 的 XML 表述。

        覆盖:
        toRepresentation 在类中 SceneEncoder
        参数:
        mediaType - 欲序列化成的目标媒体类型。
        content - 欲序列化的源 XML 字符串。
        返回:
        XML 格式的表述。