public interface Descriptor extends Serializable, Cloneable
JMX元素的附加元数据。 A Descriptor
与MBeanInfo
,MBeanAttributeInfo
等相关联 。它由一系列字段组成。 字段是名称和关联值。
字段名称不区分大小写。 名称descriptorType
, descriptortype
和DESCRIPTORTYPE
都是等效的。 但是,首先设置字段时使用的情况在getFields()
和getFieldNames()
方法的结果中保留 。
并非所有字段名称和值都是预定义的。 任何程序都可以定义和添加新的字段。
描述符可以是可变的或不可变的。 一个不可变的描述符,一旦创建,永远不会改变。 可以修改描述Descriptor
内容的Descriptor方法将抛出一个不可变描述符的异常。 不可变描述符通常是ImmutableDescriptor
或子类的实例 。 可变描述符通常是DescriptorSupport
或子类的实例 。
某些字段由JMX实现使用。 这意味着该字段的存在可能会改变JMX API的行为,或者可以在JMX API返回的描述符中设置该字段。 这些字段在下表中以斜体显示 ,并且每个字段在JMX
类中都有一个对应的常量。 例如,该字段defaultValue
由恒定表示JMX.DEFAULT_VALUE_FIELD
。
某些其他字段具有下表中描述的常规含义,但不需要由JMX实现来理解或设置。
在此版本和所有将来的版本中由JMX规范定义的字段名称将永远不会包含句点(。)。 用户可以通过在名称中包含一段时间来安全地创建自己的字段,并确保这些名称不会与任何将来版本的JMX API相冲突。 建议遵循Java包命名约定,以避免来自不同来源的字段名称之间的冲突。 例如, example.com
创建的example.com
可能具有名称com.example.interestLevel
。
需要注意的是,在值defaultValue
, legalValues
, maxValue
和minValue
领域应该由返回的类型一致getType()
方法相关MBeanAttributeInfo
或MBeanParameterInfo
。 对于MXBeans,这意味着它们应该是MXBean type mapping rules中的映射Java类型,称为opendata (J)。
javax.management.openmbean
. deprecated String Any An indication that this element of the information model is no longer recommended for use. A set of MBeans defined by an application is collectively called an information model. The convention is for the value of this field to contain a string that is the version of the model in which the element was first deprecated, followed by a space, followed by an explanation of the deprecation, for example "1.3 Replaced by the Capacity attribute"
. descriptionResourceResourceBundle
in which the key given in the descriptionResourceKey
field can be found, for example "com.example.myapp.MBeanResources"
. The meaning of this field is defined by this specification but the field is not set or used by the JMX API itself. descriptionResourceKey String Any A resource key for the description of this element. In conjunction with the descriptionResourceBundleBaseName
, this can be used to find a localized version of the description. The meaning of this field is defined by this specification but the field is not set or used by the JMX API itself. enabled String MBeanAttributeInfo"true"
or "false"
according as this item is enabled. When an attribute or operation is not enabled, it exists but cannot currently be accessed. A user interface might present it as a greyed-out item. For example, an attribute might only be meaningful after the start()
method of an MBean has been called, and is otherwise disabled. Likewise, a notification might be disabled if it cannot currently be emitted but could be in other circumstances. exceptions String[] MBeanAttributeInfo, MBeanConstructorInfo, MBeanOperationInfo The class names of the exceptions that can be thrown when invoking a constructor or operation, or getting an attribute. The meaning of this field is defined by this specification but the field is not set or used by the JMX API itself. Exceptions thrown when setting an attribute are specified by the field setExceptions
. immutableInfo String MBeanInfo The string "true"
or "false"
according as this MBean's MBeanInfo is immutable. When this field is true, the MBeanInfo for the given MBean is guaranteed not to change over the lifetime of the MBean. Hence, a client can read it once and cache the read value. When this field is false or absent, there is no such guarantee, although that does not mean that the MBeanInfo will necessarily change. See also the "jmx.mbean.info.changed"
notification. infoTimeout StringLong
or a decimal string. This provides a hint from a DynamicMBean or any MBean that does not define immutableInfo
as true
that the MBeanInfo is not likely to change within this period and therefore can be cached. When this field is missing or has the value zero, it is not recommended to cache the MBeanInfo unless it has the immutableInfo
set to true
or it has "jmx.mbean.info.changed"
in its MBeanNotificationInfo
array. interfaceClassName String MBeanInfo The Java interface name for a Standard MBean or MXBean, as returned by Class.getName()
. A Standard MBean or MXBean registered directly in the MBean Server or created using the StandardMBean
class will have this field in its MBeanInfo Descriptor. legalValues Set<?> MBeanAttributeInfojavax.management.openmbean
. locale String Any The locale of the description in this MBeanInfo
, MBeanAttributeInfo
, etc, as returned by Locale.toString()
. maxValue Object MBeanAttributeInfojavax.management.openmbean
. metricType String MBeanAttributeInfojavax.management.openmbean
. mxbean String MBeanInfo The string "true"
or "false"
according as this MBean is an MXBean
. A Standard MBean or MXBean registered directly with the MBean Server or created using the StandardMBean
class will have this field in its MBeanInfo Descriptor. openType OpenType
MBeanAttributeInfoThe Open Type of this element. In the case of MBeanAttributeInfo
and MBeanParameterInfo
, this is the Open Type of the attribute or parameter. In the case of MBeanOperationInfo
, it is the Open Type of the return value. This field is set in the Descriptor for all instances of OpenMBeanAttributeInfoSupport
, OpenMBeanOperationInfoSupport
, and OpenMBeanParameterInfoSupport
. It is also set for attributes, operations, and parameters of MXBeans.
This field can be set for an MBeanNotificationInfo
, in which case it indicates the Open Type that the user data
will have.
The original Java type of this element as it appeared in the MXBean
interface method that produced this MBeanAttributeInfo
(etc). For example, a method
public
MemoryUsage
getHeapMemoryUsage();
in an MXBean interface defines an attribute called HeapMemoryUsage
of type CompositeData
. The originalType
field in the Descriptor for this attribute will have the value "java.lang.management.MemoryUsage"
.
The format of this string is described in the section Type Names of the MXBean specification.
setExceptions String[] MBeanAttributeInfo The class names of the exceptions that can be thrown when setting an attribute. The meaning of this field is defined by this specification but the field is not set or used by the JMX API itself. Exceptions thrown when getting an attribute are specified by the fieldexceptions
. severity StringInteger
. since String Any The version of the information model in which this element was introduced. A set of MBeans defined by an application is collectively called an information model. The application may also define versions of this model, and use the "since"
field to record the version in which an element first appeared. units String MBeanAttributeInfo"bytes"
or "seconds"
.
一些其他字段由模型MBean定义。 请参阅信息
ModelMBeanInfo
,
ModelMBeanAttributeInfo
,
ModelMBeanConstructorInfo
,
ModelMBeanNotificationInfo
和
ModelMBeanOperationInfo
,以及该章的“模型MBean” JMX Specification 。 下表总结了这些字段。 请注意,当该表中的Type为Number时,也可以使用Long的十进制表示形式的String。
没有什么可以阻止在不是MBean的MBean中使用这些字段。 例如 , displayName, severity和visibility字段在模型MBean之外是感兴趣的。 但是,只有模型MBean具有这些字段的预定义行为。
Name Type Used in Meaning class String ModelMBeanOperationInfo Class where method is defined (fully qualified). currencyTimeLimit Number ModelMBeanInfoModifier and Type | Method and Description |
---|---|
Object |
clone()
返回一个等于该描述符的描述符。
|
boolean |
equals(Object obj)
将此描述符与给定对象进行比较。
|
String[] |
getFieldNames()
返回描述符中的所有字段名。
|
String[] |
getFields()
以字符串数组的形式返回此描述符中包含的所有字段。
|
Object |
getFieldValue(String fieldName)
返回特定字段名称的值,如果该名称没有值,则返回null。
|
Object[] |
getFieldValues(String... fieldNames)
将描述符中的所有字段值作为对象数组返回。
|
int |
hashCode()
返回此描述符的哈希码值。
|
boolean |
isValid()
如果所有字段都具有给定名称的合法值,则返回true。
|
void |
removeField(String fieldName)
从描述符中删除一个字段。
|
void |
setField(String fieldName, Object fieldValue)
设置特定字段名称的值。
|
void |
setFields(String[] fieldNames, Object[] fieldValues)
将字段名称数组中的所有字段设置为字段值数组中具有相同索引的新值。
|
Object getFieldValue(String fieldName) throws RuntimeOperationsException
fieldName
- 字段名称。
RuntimeOperationsException
- 如果字段名称是非法的。
void setField(String fieldName, Object fieldValue) throws RuntimeOperationsException
设置特定字段名称的值。 这将修改现有字段或添加新字段。
字段值在设置之前将被验证。 如果它无效,那么将抛出异常。 有效性的含义取决于描述符的实现。
fieldName
- 要设置的字段名称。
不能为null或为空。
fieldValue
- 要为字段名称设置的字段值。
如果该值是该字段的有效值,则可以为null。
RuntimeOperationsException
- 如果字段名称或字段值是非法的(包装异常是IllegalArgumentException
);
或者描述符是不可变的(包装异常是UnsupportedOperationException
)。
String[] getFields()
setFields(java.lang.String[], java.lang.Object[])
String[] getFieldNames()
Object[] getFieldValues(String... fieldNames)
fieldNames
String数组参数的顺序相同。
fieldNames
- 应返回值的字段名称的字符串数组。
如果数组为空,那么将返回一个空数组。
如果数组为空,那么将返回所有值,就像该参数是由getFieldNames()
返回的数组一样 。
如果数组中的字段名称不存在,包括其为空或空字符串的情况,那么返回的匹配数组元素将返回null。
fieldNames
的列表为空,您将获得一个空数组。
void removeField(String fieldName)
fieldName
- 要删除的字段的字符串名称。
如果字段名称是非法的或没有找到该字段,则不会抛出异常。
RuntimeOperationsException
- 如果给定名称的字段存在且描述符是不可变的。
包装的例外将是UnsupportedOperationException
。
void setFields(String[] fieldNames, Object[] fieldValues) throws RuntimeOperationsException
将字段名称数组中的所有字段设置为字段值数组中具有相同索引的新值。 阵列大小必须匹配。
字段值在设置之前将被验证。 如果它无效,那么将抛出异常。 如果数组为空,那么没有更改将生效。
fieldNames
- 字段名称的字符串数组。
数组和数组元素不能为空。
fieldValues
- 相应字段值的对象数组。
数组不能为null。
数组的元素可以为空。
RuntimeOperationsException
- 如果由于任何原因更改失败。
如果fieldNames
或fieldValues
为空,或者如果数组的长度不同,或者其中之一中有非法值,则包装的异常为IllegalArgumentException
。
包装的异常是UnsupportedOperationException
如果描述符是不可变的,而调用将更改其内容。
getFields()
Object clone() throws RuntimeOperationsException
返回一个等于该描述符的描述符。 返回的描述符的更改对此描述符没有影响,反之亦然。 如果这个描述符是不可变的,它可以通过返回自己来实现这个条件。
RuntimeOperationsException
- 用于字段名称或字段值的非法值。
如果由于任何原因描述符构造失败,将抛出此异常。
boolean isValid() throws RuntimeOperationsException
RuntimeOperationsException
- 如果由于任何原因有效性检查失败,将抛出此异常。
如果描述符无效,该方法返回false,但如果尝试确定有效性失败,则返回此异常。
boolean equals(Object obj)
将此描述符与给定对象进行比较。 如果给定的对象也是描述符,并且两个描述符具有相同的字段名称(可能在不同情况下)和相同的关联值,则对象是相等的。 如果满足以下条件,两个描述符中的字段的相应值相等:
Arrays.deepEquals(Object[],Object[])
必须返回true。 Object.equals(Object)
必须返回true。 equals
在类别
Object
obj
- 要比较的对象。
true
如果对象相同;
false
否则。
Object.hashCode()
, HashMap
int hashCode()
返回此描述符的哈希码值。 哈希码被计算为描述符中每个字段的哈希码的和。 名称为n
,值为v
的字段的哈希码为n.toLowerCase().hashCode() ^ h
。 这里h
是哈希码v
,计算如下:
v
为null,则h
为0。 v
是原始数组,那么使用java.util.Arrays.hashCode的适当h
来计算java.util.Arrays.hashCode
。 v
是一个对象数组然后h
使用计算Arrays.deepHashCode(Object[])
。 h
是v.hashCode()
。 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.