|
|||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
javax.management.monitor
接口 StringMonitorMBean
- 所有超级接口:
- MonitorMBean
- 所有已知实现类:
- StringMonitor
-
public interface StringMonitorMBean
- extends MonitorMBean
公开字符串监视器 MBean 的远程管理接口。
- 从以下版本开始:
- 1.5
方法摘要 | |
---|---|
String |
getDerivedGauge() 已过时。 从 JMX 1.2 开始,由 getDerivedGauge(ObjectName) 取代 |
String |
getDerivedGauge(ObjectName object) 获取指定 MBean 的派生尺度。 |
long |
getDerivedGaugeTimeStamp() 已过时。 从 JMX 1.2 开始,由 getDerivedGaugeTimeStamp(ObjectName) 取代 |
long |
getDerivedGaugeTimeStamp(ObjectName object) 获取指定 MBean 的派生尺度时间戳。 |
boolean |
getNotifyDiffer() 获取不同通知的开/关切换值。 |
boolean |
getNotifyMatch() 获取匹配的通知的开/关切换值。 |
String |
getStringToCompare() 获取要与 observed 属性进行比较的字符串。 |
void |
setNotifyDiffer(boolean value) 设置不同通知的开/关切换值。 |
void |
setNotifyMatch(boolean value) 设置匹配的通知的开/关切换值。 |
void |
setStringToCompare(String value) 设置要与 observed 属性进行比较的字符串。 |
从接口 javax.management.monitor.MonitorMBean 继承的方法 |
---|
addObservedObject, containsObservedObject, getGranularityPeriod, getObservedAttribute, getObservedObject, getObservedObjects, isActive, removeObservedObject, setGranularityPeriod, setObservedAttribute, setObservedObject, start, stop |
方法详细信息 |
---|
getDerivedGauge
@Deprecated String getDerivedGauge()
-
已过时。 从 JMX 1.2 开始,由
getDerivedGauge(ObjectName)
取代 - 获取派生的尺度。
-
-
- 返回:
- 派生的尺度。
getDerivedGaugeTimeStamp
@Deprecated long getDerivedGaugeTimeStamp()
-
已过时。 从 JMX 1.2 开始,由
getDerivedGaugeTimeStamp(ObjectName)
取代 - 获取派生的尺度时间戳。
-
-
- 返回:
- 派生的尺度时间戳。
getDerivedGauge
String getDerivedGauge(ObjectName object)
- 获取指定 MBean 的派生尺度。
-
-
- 参数:
-
object
- 将为其返回派生的尺度的 MBean - 返回:
-
如果指定的 MBean 在观察的 MBean 集中,则返回该 MBeans 的派生尺度,否则,返回
null
。
getDerivedGaugeTimeStamp
long getDerivedGaugeTimeStamp(ObjectName object)
- 获取指定 MBean 的派生尺度时间戳。
-
-
- 参数:
-
object
- 将为其返回派生的尺度时间戳的 MBean - 返回:
-
如果指定的 MBean 在观察的 MBean 集中,则返回该 MBeans 的派生尺度时间戳,否则,返回
null
。
getStringToCompare
String getStringToCompare()
- 获取要与 observed 属性进行比较的字符串。
-
-
- 返回:
- 字符串值。
- 另请参见:
-
setStringToCompare(java.lang.String)
setStringToCompare
void setStringToCompare(String value) throws IllegalArgumentException
- 设置要与 observed 属性进行比较的字符串。
-
-
- 参数:
-
value
- 字符串值。 - 抛出:
-
IllegalArgumentException
- 如果要比较的指定字符串为 null。 - 另请参见:
-
getStringToCompare()
getNotifyMatch
boolean getNotifyMatch()
- 获取匹配的通知的开/关切换值。
-
-
- 返回:
-
如果匹配时字符串监视器发出通知,则返回
true
,否则返回false
。 - 另请参见:
-
setNotifyMatch(boolean)