Jvmstat

sun.jvmstat.perfdata.monitor
Class MonitorStatus

java.lang.Object
  extended by sun.jvmstat.perfdata.monitor.MonitorStatus

public class MonitorStatus
extends Object

Immutable class containing the list of inserted and deleted monitors over an arbitrary time period.

Since:
1.5

Field Summary
protected  List inserted
          The list of Monitors inserted since the last query.
protected  List removed
          The list of Monitors removed since the last query.
 
Constructor Summary
MonitorStatus(List inserted, List removed)
          Create a MonitorStatus instance.
 
Method Summary
 List getInserted()
          Get the list of Monitors inserted since the last query.
 List getRemoved()
          Get the list of Monitors removed since the last query.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

inserted

protected List inserted
The list of Monitors inserted since the last query.


removed

protected List removed
The list of Monitors removed since the last query.

Constructor Detail

MonitorStatus

public MonitorStatus(List inserted,
                     List removed)
Create a MonitorStatus instance.

Parameters:
inserted - the list of Monitors inserted
removed - the list of Monitors removed
Method Detail

getInserted

public List getInserted()
Get the list of Monitors inserted since the last query.

Returns:
List - the List of Monitor objects inserted or an empty List.

getRemoved

public List getRemoved()
Get the list of Monitors removed since the last query.

Returns:
List - the List of Monitor objects removed or an empty List.

Jvmstat