所有类
javax.management
类 Attribute
java.lang.Object
javax.management.Attribute
-
所有已实现的接口:
-
Serializable
-
public class Attribute
- extends Object
- implements Serializable
通过将 MBean 属性名与其值相关联来表示 MBean 属性。MBean 服务器和其他对象使用此类来获得并设置属性值。
-
从以下版本开始:
-
1.5
-
另请参见:
-
序列化表格
Attribute
public Attribute(String name,
Object value)
-
构造将给定的属性名与给定值相关联的 Attribute 对象。
-
参数:
-
name
- 一个 String,包含要创建的属性的名称。不能为 null。
-
value
- 分配给属性的 Object。此对象必须与该属性的类型相同。
getName
public String getName()
-
返回包含该 Attribute 的名称的 String。
-
-
-
返回:
-
Attribute 的名称。
getValue
public Object getValue()
-
返回此 Attribute 值的 Object。
-
-
-
返回:
-
Attribute 的值。
equals
public boolean equals(Object object)
-
比较当前的 Attribute Object 与另一个 Attribute Object。
-
-
覆盖:
-
类
Object
中的 equals
-
-
参数:
-
object
- 要与当前 Attribute 进行比较的 Attribute。
-
返回:
-
如果两个 Attribute 对象相等,则返回 true;否则返回 false。
-
另请参见:
-
Object.hashCode()
, Hashtable
所有类