Class: sun.management.Sensor
- public abstract class Sensor
An abstract sensor.
A AbstractSensor object consists of two attributes:
- on is a boolean flag indicating if a sensor is triggered. This flag will be set or cleared by the component that owns the sensor.
- count is the total number of times that a sensor has been triggered.
Methods
-
Sensortop
public Sensor(String name)Constructs a Sensor object. -
cleartop
public void clear()Clears this sensor. -
cleartop
public void clear(int increment)Clears this sensor and increments the count with the input increment. -
clearActiontop
abstract void clearAction() -
getCounttop
public long getCount()Returns the total number of times that this sensor has been triggered. -
getNametop
public String getName()Returns the name of this sensor. -
isOntop
public boolean isOn()Tests if this sensor is currently on. -
toStringtop
public String toString()Returns a string representation of the object. In general, thetoStringmethod returns a string that "textually represents" this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method.The
toStringmethod for classObjectreturns a string consisting of the name of the class of which the object is an instance, the at-sign character `@', and the unsigned hexadecimal representation of the hash code of the object. In other words, this method returns a string equal to the value of:getClass().getName() + '@' + Integer.toHexString(hashCode())
-
triggertop
public void trigger()Triggers this sensor. This method first sets this sensor on and increments its sensor count. -
triggertop
public void trigger(int increment)Triggers this sensor. This method sets this sensor on and increments the count with the input increment. -
triggertop
public void trigger(int increment, MemoryUsage usage)Triggers this sensor piggybacking a memory usage object. This method sets this sensor on and increments the count with the input increment. -
triggerActiontop
abstract void triggerAction() -
triggerActiontop
abstract void triggerAction(MemoryUsage u)
