java命名空间javax.management.openmbean类openmbeanattributeinfosupport的类成员方法:
equals定义及介绍
本文导语:
equals
public boolean equals(object obj)
比较指定 obj 参数与此 openmbeanattributeinfosupport 实例的相等性。
当且仅当下面的所有语句均为 true 时,才返回 true:
obj 为非 null,
obj 还实现 openmbeanattributeinfo 接口,
它们的名称相等
它们的...
public boolean equals(object obj)
- 比较指定
obj
参数与此 openmbeanattributeinfosupport
实例的相等性。
当且仅当下面的所有语句均为 true 时,才返回 true
:
obj
为非 null,
obj
还实现 openmbeanattributeinfo
接口,
- 它们的名称相等
- 它们的开放类型相等
- 它们的访问属性(isreadable、iswritable 和 isis)相等
- 它们的默认值、最小值、最大值和合法值相等。
这确保了此 equals
方法对作为 openmbeanattributeinfo
接口的不同实现的 obj
参数正常工作。
如果 obj
还实现 descriptorread
,则其 getdescriptor()
必须为此对象返回相同的值。
- 指定者:
- 接口
openmbeanattributeinfo
中的 equals
- 指定者:
- 接口
openmbeanparameterinfo
中的 equals
- 覆盖:
- 类
mbeanattributeinfo
中的 equals
- 参数:
obj
- 与此 openmbeanattributeinfosupport
实例进行相等性比较的对象。
- 返回:
- 如果指定的对象等于此
openmbeanattributeinfosupport
实例,则返回 true
。 - 另请参见:
object.hashcode()
,
hashtable