public class

MonitorStatus

extends Object
java.lang.Object
   ↳ sun.jvmstat.perfdata.monitor.MonitorStatus

Class Overview

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

Summary

Fields
protected List inserted The list of Monitors inserted since the last query.
protected List removed The list of Monitors removed since the last query.
Public Constructors
MonitorStatus(List inserted, List removed)
Create a MonitorStatus instance.
Public Methods
List getInserted()
Get the list of Monitors inserted since the last query.
List getRemoved()
Get the list of Monitors removed since the last query.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

protected List inserted

The list of Monitors inserted since the last query.

protected List removed

The list of Monitors removed since the last query.

Public Constructors

public MonitorStatus (List inserted, List removed)

Create a MonitorStatus instance.

Parameters
inserted the list of Monitors inserted
removed the list of Monitors removed

Public Methods

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.

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.