RtmAttribute

最近更新时间:2022-09-20 05:17:40

Public 成员函数
RtmAttribute (String key, String value)
voidsetKey (String key)
StringgetKey ()
voidsetValue (String value)
StringgetValue ()
StringtoString ()

详细描述

用于维护 RTM 属性的类。

构造及析构函数说明

RtmAttribute()

org.ar.rtm.RtmAttribute.RtmAttribute    (String key,String value)   

RtmAttribute 构造方法。

参数描述
key属性名。必须为可见字符且长度不得超过 32 字节。
value属性值。长度不得超过 8 KB。

成员函数说明

getKey()

String org.ar.rtm.RtmAttribute.getKey   ()

获取属性名。

返回

通过 setKey 方法设置的属性名。

getValue()

String org.ar.rtm.RtmAttribute.getValue()

获取属性值。

返回

通过 setValue 方法设置的属性名。

setKey()

void org.ar.rtm.RtmAttribute.setKey (String key)

设置属性名。

参数描述
key属性名。必须为可见字符且不得超过 32 字节。

setValue()

void org.ar.rtm.RtmAttribute.setValue   (String value)

设置属性值。

参数描述
value属性值。长度不得超过 8 KB。