Package | Description |
---|---|
org.rrd4j.core.jrrd |
This package provides read-only access to natives RRD file.
|
Modifier and Type | Method and Description |
---|---|
ConsolidationFunctionType |
Archive.getType()
Returns the type of function used to calculate the consolidated data point.
|
static ConsolidationFunctionType |
ConsolidationFunctionType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConsolidationFunctionType[] |
ConsolidationFunctionType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
(package private) ArrayList<Archive> |
RRDatabase.getArchiveList(ConsolidationFunctionType type) |
Iterator<Archive> |
RRDatabase.getArchives(ConsolidationFunctionType type)
Returns an iterator over the archives in this database of the given type
in proper sequence.
|
DataChunk |
RRDatabase.getData(ConsolidationFunctionType type)
Returns data from the database corresponding to the given consolidation
function and a step size of 1.
|
DataChunk |
RRDatabase.getData(ConsolidationFunctionType type,
Date startDate,
Date endDate,
long step)
Returns data from the database corresponding to the given consolidation
function.
|
DataChunk |
RRDatabase.getData(ConsolidationFunctionType type,
long startTime,
long endTime,
long stepSeconds)
getData.
|