|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object javax.management.MBeanFeatureInfo
public class MBeanFeatureInfo
提供 MBean 描述符对象的常规信息。所描述的功能可以是属性、操作、参数或通知。此类的实例是不可变的。子类可以是可变的,但是不推荐使用此功能。
字段摘要 | |
---|---|
protected String |
description
该功能的可读描述。 |
protected String |
name
该功能的名称。 |
构造方法摘要 | |
---|---|
MBeanFeatureInfo(String name,
String description)
构造一个 MBeanFeatureInfo 对象。 |
|
MBeanFeatureInfo(String name,
String description,
Descriptor descriptor)
构造一个 MBeanFeatureInfo 对象。 |
方法摘要 | |
---|---|
boolean |
equals(Object o)
比较此 MBeanFeatureInfo 与另一个 MBeanFeatureInfo。 |
String |
getDescription()
返回该功能的可读描述。 |
Descriptor |
getDescriptor()
返回该功能的描述符。 |
String |
getName()
返回该功能的名称。 |
int |
hashCode()
返回该对象的哈希码值。 |
从类 java.lang.Object 继承的方法 |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
字段详细信息 |
---|
protected String name
getName()
方法,而不是读取此字段,并且子类不能更改该字段。
protected String description
getDescription()
方法,而不是读取此字段,并且子类不能更改该字段。
构造方法详细信息 |
---|
public MBeanFeatureInfo(String name, String description)
MBeanFeatureInfo
对象。此构造方法等同于 MBeanFeatureInfo(name, description, (Descriptor) null
。
name
- 该功能的名称。description
- 该功能的可读描述。public MBeanFeatureInfo(String name, String description, Descriptor descriptor)
MBeanFeatureInfo
对象。
name
- 该功能的名称。description
- 该功能的可读描述。descriptor
- 该功能的描述符。此参数可以为 null,它等效于一个空描述符。方法详细信息 |
---|
public String getName()
public String getDescription()
public Descriptor getDescriptor()
DescriptorRead
中的 getDescriptor
public boolean equals(Object o)
Object
中的 equals
o
- 要比较的对象。
o
是一个 MBeanFeatureInfo,其 getName()
、getDescription()
和 getDescriptor()
值与此 MBeanFeatureInfo 的这些值相等(不必完全一样)时,才返回 true。Object.hashCode()
,
Hashtable
public int hashCode()
Object
复制的描述java.util.Hashtable
提供的哈希表)的性能。
hashCode
的常规协定是:
hashCode
方法都必须生成相同的整数结果。
Object.equals(java.lang.Object)
方法,两个对象不相等,那么对这两个对象中的任一对象上调用 hashCode 方法不 要求一定生成不同的整数结果。但是,程序员应该意识到,为不相等的对象生成不同整数结果可以提高哈希表的性能。
实际上,由 Object 类定义的 hashCode 方法确实会针对不同的对象返回不同的整数。(这一般是通过将该对象的内部地址转换成一个整数来实现的,但是 JavaTM 编程语言不需要这种实现技巧。)
Object
中的 hashCode
Object.equals(java.lang.Object)
,
Hashtable
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。