所有类


javax.management
类 MBeanAttributeInfo

java.lang.Object
  继承者 javax.management.MBeanFeatureInfo
      继承者 javax.management.MBeanAttributeInfo
所有已实现的接口:
Serializable, Cloneable
直接已知子类:
ModelMBeanAttributeInfo, OpenMBeanAttributeInfoSupport

public class MBeanAttributeInfo
   
   
   
   
   
extends MBeanFeatureInfo
implements Serializable, Cloneable

描述出于管理目的而公开的 MBean 属性。此类的实例是不可变的。子类可以是可变的,但是不推荐此功能。

从以下版本开始:
1.5
另请参见:
序列化表格

字段摘要
 
从类 javax.management.MBeanFeatureInfo 继承的字段
description, name
 
构造方法摘要
MBeanAttributeInfo(String name, String description, Method getter, Method setter)
          此构造方法带有简单属性的名称,以及读取和写入属性的 Method 对象。
MBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs)
          构造一个 MBeanAttributeInfo 对象。
 
方法摘要
 Object clone()
          返回此实例的浅表副本。
 boolean equals(Object o)
          比较此 MBeanAttributeInfo 与另一个 MBeanAttributeInfo。
 String getType()
          返回该属性的类名。
 int hashCode()
          返回该对象的哈希码值。
 boolean isIs()
          指示此属性是否具有 "is" getter。
 boolean isReadable()
          该属性的值是否可读。
 boolean isWritable()
          是否可将新值写入该属性。
 
从类 javax.management.MBeanFeatureInfo 继承的方法
getDescription, getName
 
从类 java.lang.Object 继承的方法
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

MBeanAttributeInfo

public MBeanAttributeInfo(String name,
                          String type,
                          String description,
                          boolean isReadable,
                          boolean isWritable,
                          boolean isIs)
                   throws IllegalArgumentException
构造一个 MBeanAttributeInfo 对象。

参数:
name - 属性的名称。
type - 属性的类型或类名。
description - 该属性的可读描述。
isReadable - 如果该属性具有 getter 方法,则为 True;否则为 false。
isWritable - 如果该属性具有 setter 方法,则为 True;否则为 false。
isIs - 如果该属性具有 "is" getter,则为 True;否则为 false。
抛出:
IllegalArgumentException

MBeanAttributeInfo

public MBeanAttributeInfo(String name,
                          String description,
                          Method getter,
                          Method setter)
                   throws IntrospectionException
此构造方法带有简单属性的名称,以及读取和写入属性的 Method 对象。

参数:
name - 属性的编程名称。
description - 该属性的可读描述。
getter - 用于读取属性值的方法。如果该属性是只写的,则可以为 null。
setter - 用于写入属性值的方法。如果该属性是只读的,则可以为 null。
抛出:
IntrospectionException - 如果在此属性的定义中存在一致性问题。
方法详细信息

clone

public Object clone()

返回此实例的浅表副本。通过简单地调用 super.clone() 可获得该副本,因此调用 Object.clone() 所实现的默认本机浅表复制机制。不进行任何内部字段的更深层复制。

因为此类是不可变的,所以主要对子类进行复制。

覆盖:
Object 中的 clone
返回:
此实例的一个克隆。
另请参见:
Cloneable

getType

public String getType()
返回该属性的类名。

返回:
类名。

isReadable

public boolean isReadable()
该属性的值是否可读。

返回:
如果该属性可读,则返回 True;否则返回 false。

isWritable

public boolean isWritable()
是否可将新值写入该属性。

返回:
如果可写入该属性,则返回 True;否则返回 false。

isIs

public boolean isIs()
指示此属性是否具有 "is" getter。

返回:
如果此属性具有 "is" getter,则返回 true。

equals

public boolean equals(Object o)
比较此 MBeanAttributeInfo 与另一个 MBeanAttributeInfo。

覆盖:
MBeanFeatureInfo 中的 equals
参数:
o - 要比较的对象。
返回:
当且仅当 o 是一个 MBeanAttributeInfo,其 MBeanFeatureInfo.getName()getType()MBeanFeatureInfo.getDescription()isReadable()isWritable()isIs() 值与此 MBeanAttributeInfo 的这些值相等(不必完全一样)时,才返回 true。
另请参见:
Object.hashCode(), Hashtable

微信小程序

微信扫一扫体验

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部