| java.lang.Object sun.jvmstat.monitor.AbstractMonitor
All known Subclasses: sun.jvmstat.perfdata.monitor.PerfByteArrayMonitor, sun.jvmstat.perfdata.monitor.PerfLongMonitor, sun.jvmstat.perfdata.monitor.PerfIntegerMonitor,
AbstractMonitor | abstract public class AbstractMonitor implements Monitor(Code) | | The base class for Instrumentation Monitoring Objects. This base class
provides implementations of the
Monitor methods that are common
to all classes implementing the Monitor interface..
author: Brian Doherty version: 1.8, 05/05/07 since: 1.5 |
Constructor Summary | |
protected | AbstractMonitor(String name, Units units, Variability variability, boolean supported, int vectorLength) Create a vector instrumentation monitoring object with the given
name and attributes. | protected | AbstractMonitor(String name, Units units, Variability variability, boolean supported) Create a scalar instrumentation monitoring object with the given
name and attributes. |
supported | protected boolean supported(Code) | | |
units | protected Units units(Code) | | |
variability | protected Variability variability(Code) | | |
vectorLength | protected int vectorLength(Code) | | |
AbstractMonitor | protected AbstractMonitor(String name, Units units, Variability variability, boolean supported, int vectorLength)(Code) | | Create a vector instrumentation monitoring object with the given
name and attributes.
Parameters: name - the name to assign to this instrumentation object. Parameters: units - the units of measure attribute Parameters: variability - the variability attribute Parameters: supported - support level indicator Parameters: vectorLength - the length of the vector, or 0 if not a vector type. |
AbstractMonitor | protected AbstractMonitor(String name, Units units, Variability variability, boolean supported)(Code) | | Create a scalar instrumentation monitoring object with the given
name and attributes.
Parameters: name - the name to assign to this instrumentation object. Parameters: units - the units of measure attribute Parameters: variability - the variability attribute Parameters: supported - support level indicator |
getUnits | public Units getUnits()(Code) | | |
getVariability | public Variability getVariability()(Code) | | |
getVectorLength | public int getVectorLength()(Code) | | |
isSupported | public boolean isSupported()(Code) | | |
isVector | public boolean isVector()(Code) | | |
|
|