public class MBeanNotificationInfo extends MBeanFeatureInfo implements Cloneable
MBeanNotificationInfo
类用于描述针对给定Java类通知的MBean发出的不同通知实例的特性。 如果MBean发出可能是不同Java类的实例的通知,则该MBean的元数据应为每个这些通知Java类提供一个MBeanNotificationInfo
对象。
这个类的实例是不可变的。 子类可能是可变的,但不建议这样做。
该课程扩展了javax.management.MBeanFeatureInfo
,从而提供了name
和description
字段。 name
字段应该是此类描述的通知对象的完全限定的Java类名称。
getNotifTypes
方法返回一个包含MBean可能发出的通知类型的字符串数组。 通知类型是一个点符号字符串,用于描述发出的通知是什么,而不是通知的Java类。 单个通用通知类可用于发送几种类型的通知。 所有这些类型都在getNotifTypes
方法的字符串数组结果中返回。
description, name
Constructor and Description |
---|
MBeanNotificationInfo(String[] notifTypes, String name, String description)
构造一个
MBeanNotificationInfo 对象。
|
MBeanNotificationInfo(String[] notifTypes, String name, String description, Descriptor descriptor)
构造一个
MBeanNotificationInfo 对象。
|
Modifier and Type | Method and Description |
---|---|
Object |
clone()
返回此实例的浅克隆。
|
boolean |
equals(Object o)
将此MBeanNotificationInfo与另一个进行比较。
|
String[] |
getNotifTypes()
返回包含MBean可能发出的通知类型的字符串数组(以点表示)。
|
int |
hashCode()
返回对象的哈希码值。
|
String |
toString()
返回对象的字符串表示形式。
|
getDescription, getDescriptor, getName
public MBeanNotificationInfo(String[] notifTypes, String name, String description)
MBeanNotificationInfo
对象。
notifTypes
- 包含MBean可能发出的通知类型的字符串数组(以点表示法)。
这可能是null,具有与零长度数组相同的效果。
name
- 描述的
name
的完全限定的Java类名称。
description
- 数据的人类可读描述。
public MBeanNotificationInfo(String[] notifTypes, String name, String description, Descriptor descriptor)
MBeanNotificationInfo
对象。
notifTypes
- 包含MBean可能发出的通知类型的字符串数组(以点表示法)。
这可能是null,具有与零长度数组相同的效果。
name
- 描述的
name
的完全限定的Java类名称。
description
- 数据的人类可读描述。
descriptor
- 通知的描述符。
这可能是空的,这相当于空描述符。
public Object clone()
public String[] getNotifTypes()
public String toString()
Object
toString
方法返回一个“textually代表”这个对象的字符串。
结果应该是一个简明扼要的表达,容易让人阅读。
建议所有子类覆盖此方法。
该toString
类方法Object
返回一个由其中的对象是一个实例,该符号字符`的类的名称的字符串@
”和对象的哈希码的无符号的十六进制表示。 换句话说,这个方法返回一个等于下列值的字符串:
getClass().getName() + '@' + Integer.toHexString(hashCode())
public boolean equals(Object o)
equals
在
MBeanFeatureInfo
o
- 要比较的对象。
o
是一个的MBeanNotificationInfo使得其MBeanFeatureInfo.getName()
, MBeanFeatureInfo.getDescription()
, MBeanFeatureInfo.getDescriptor()
和getNotifTypes()
值相等(不一定相同),以与本的MBeanNotificationInfo的。
两个通知类型的数组如果相应的元素相等则相等。
如果它们具有相同的元素但是以不同的顺序,它们是不相等的。
Object.hashCode()
, HashMap
public int hashCode()
Object
复制
HashMap
所提供的那样 。
hashCode
的总合同是:
hashCode
方法必须始终返回相同的整数,前提是在对象上的equals
比较中没有使用任何信息被修改。 该整数不需要从一个应用程序的执行到相同应用程序的另一个执行保持一致。 equals(Object)
方法两个对象相等,则在两个对象中的每个对象上调用hashCode
方法必须产生相同的整数结果。 Object.equals(java.lang.Object)
方法不相等,那么在两个对象中的每个对象上调用hashCode
方法必须产生不同的整数结果。 但是,程序员应该意识到,为不等对象生成不同的整数结果可能会提高哈希表的性能。 尽可能合理实用,由类Object
定义的hashCode方法确实为不同对象返回不同的整数。 (这通常通过将对象的内部地址转换为整数来实现,但Java的编程语言不需要此实现技术。)
hashCode
在类别
MBeanFeatureInfo
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.