Module  java.activation
软件包  javax.activation

Class MimeTypeParameterList



  • public class MimeTypeParameterList
    extends Object
    在RFC 2045和2046中定义的MimeType的参数列表。对象的主要类型必须已被剥离。
    从以下版本开始:
    1.6
    另请参见:
    MimeType
    • 构造方法详细信息

      • MimeTypeParameterList

        public MimeTypeParameterList​()
        默认构造函数。
      • MimeTypeParameterList

        public MimeTypeParameterList​(String parameterList)
                              throws MimeTypeParseException
        使用传入的数据构造一个新的MimeTypeParameterList。
        参数
        parameterList - RFC parameterList兼容参数列表。
        异常
        MimeTypeParseException - 如果MIME类型无法解析
    • 方法详细信息

      • parse

        protected void parse​(String parameterList)
                      throws MimeTypeParseException
        用于从String解析参数列表的例程。
        参数
        parameterList - RFC parameterList兼容参数列表。
        异常
        MimeTypeParseException - 如果MIME类型无法解析
      • size

        public int size​()
        返回此列表中的名称/值对数。
        结果
        参数数量
      • isEmpty

        public boolean isEmpty​()
        确定此列表是否为空。
        结果
        如果没有参数,则为true
      • get

        public String get​(String name)
        检索与给定名称相关联的值,如果没有当前关联,则返回null。
        参数
        name - 参数名称
        结果
        参数的值
      • set

        public void set​(String name,
                        String value)
        设置与给定名称相关联的值,替换任何先前的关联。
        参数
        name - 参数名称
        value - 参数的值
      • remove

        public void remove​(String name)
        删除与给定名称相关联的任何值。
        参数
        name - 参数名称
      • getNames

        public Enumeration getNames​()
        检索此列表中所有名称的枚举。
        结果
        枚举所有参数名称
      • toString

        public String toString​()
        返回此对象的字符串表示形式。
        重写:
        toStringObject
        结果
        a string representation of the object.