public class MBeanFeatureInfo extends Object implements Serializable, DescriptorRead
提供一个MBean描述符对象的一般信息。 所描述的特征可以是属性,操作,参数或通知。 这个类的实例是不可变的。 子类可能是可变的,但不建议这样做。
Modifier and Type | Field and Description |
---|---|
protected String |
description
该功能的人性化描述。
|
protected String |
name
功能的名称。
|
Constructor and Description |
---|
MBeanFeatureInfo(String name, String description)
构造一个
MBeanFeatureInfo 对象。
|
MBeanFeatureInfo(String name, String description, Descriptor descriptor)
构造一个
MBeanFeatureInfo 对象。
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object o)
将此MBeanFeatureInfo与另一个进行比较。
|
String |
getDescription()
返回该功能的可读描述。
|
Descriptor |
getDescriptor()
返回该特征的描述符。
|
String |
getName()
返回功能的名称。
|
int |
hashCode()
返回对象的哈希码值。
|
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
- 该功能的描述符。
这可能是空的,这相当于空描述符。
public String getName()
public String getDescription()
public Descriptor getDescriptor()
getDescriptor
在界面
DescriptorRead
public boolean equals(Object o)
equals
在
Object
o
- 要比较的对象。
o
是MBeanFeatureInfo使得其
getName()
,
getDescription()
和
getDescriptor()
值相等(不一定相同),以与本MBeanFeatureInfo的。
Object.hashCode()
, HashMap
public int hashCode()
Object
HashMap
提供的那样 。
hashCode
的总合同是:
hashCode
方法必须始终返回相同的整数,前提是修改了对象中equals
比较中没有使用的equals
。 该整数不需要从一个应用程序的执行到相同应用程序的另一个执行保持一致。 equals(Object)
方法两个对象相等,则在两个对象中的每个对象上调用hashCode
方法必须产生相同的整数结果。 Object.equals(java.lang.Object)
方法不相等,那么在两个对象中的每个对象上调用hashCode
方法必须产生不同的整数结果。 但是,程序员应该意识到,为不等对象生成不同的整数结果可能会提高哈希表的性能。 尽可能合理实用,由类Object
定义的hashCode方法确实为不同对象返回不同的整数。 (这通常通过将对象的内部地址转换为整数来实现,但Java的编程语言不需要此实现技术。)
hashCode
在
Object
Object.equals(java.lang.Object)
,
System.identityHashCode(java.lang.Object)
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.