Package org.rrd4j.core.jrrd
Class PDPStatusBlock
- java.lang.Object
-
- org.rrd4j.core.jrrd.PDPStatusBlock
-
public class PDPStatusBlock extends Object
Instances of this class model the primary data point status from an RRD file.- Version:
- $Revision: 1.1 $
- Author:
- Ciaran Treanor
-
-
Field Summary
Fields Modifier and Type Field Description (package private) StringlastReading(package private) intunknownSeconds(package private) doublevalue
-
Constructor Summary
Constructors Constructor Description PDPStatusBlock(RRDFile file)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLastReading()Returns the last reading from the data source.intgetUnknownSeconds()Returns the number of seconds of the current primary data point is unknown data.doublegetValue()Returns the current value of the primary data point.StringtoString()Returns a summary the contents of this PDP status block.
-
-
-
Field Detail
-
lastReading
String lastReading
-
unknownSeconds
int unknownSeconds
-
value
double value
-
-
Constructor Detail
-
PDPStatusBlock
PDPStatusBlock(RRDFile file) throws IOException
- Throws:
IOException
-
-
Method Detail
-
getLastReading
public String getLastReading()
Returns the last reading from the data source.- Returns:
- the last reading from the data source.
-
getValue
public double getValue()
Returns the current value of the primary data point.- Returns:
- the current value of the primary data point.
-
getUnknownSeconds
public int getUnknownSeconds()
Returns the number of seconds of the current primary data point is unknown data.- Returns:
- the number of seconds of the current primary data point is unknown data.
-
-