public class Aggregate
extends Object
implements Serializable
Constructor and Description |
---|
Aggregate() |
Modifier and Type | Method and Description |
---|---|
Aggregate |
average(Double average) |
Aggregate |
countbad(Integer countbad) |
Aggregate |
countgood(Integer countgood) |
Aggregate |
countuncertain(Integer countuncertain) |
boolean |
equals(Object o) |
Aggregate |
firsttime(String firsttime) |
Aggregate |
firstvalue(Double firstvalue) |
Double |
getAverage()
Average of the values within the interval.
|
Integer |
getCountbad()
Number of bad records in the aggregated interval.
|
Integer |
getCountgood()
Number of good records in the aggregated interval.
|
Integer |
getCountuncertain()
Number of uncertain records in the aggregated interval.
|
String |
getFirsttime()
Timestamp of the first value within the interval.
|
Double |
getFirstvalue()
First value within the interval.
|
String |
getLasttime()
Timestamp of the last measurement within the interval.
|
Double |
getLastvalue()
Last value within the interval.
|
String |
getMaxtime()
Timestamp of the maximum value within the interval.
|
Double |
getMaxvalue()
Maximum value within the interval.
|
String |
getMintime()
Timestamp of the minimum value within the interval.
|
Double |
getMinvalue()
Minimum value within the interval.
|
Double |
getSum()
Sum of the values within the interval.
|
int |
hashCode() |
Aggregate |
lasttime(String lasttime) |
Aggregate |
lastvalue(Double lastvalue) |
Aggregate |
maxtime(String maxtime) |
Aggregate |
maxvalue(Double maxvalue) |
Aggregate |
mintime(String mintime) |
Aggregate |
minvalue(Double minvalue) |
void |
setAverage(Double average) |
void |
setCountbad(Integer countbad) |
void |
setCountgood(Integer countgood) |
void |
setCountuncertain(Integer countuncertain) |
void |
setFirsttime(String firsttime) |
void |
setFirstvalue(Double firstvalue) |
void |
setLasttime(String lasttime) |
void |
setLastvalue(Double lastvalue) |
void |
setMaxtime(String maxtime) |
void |
setMaxvalue(Double maxvalue) |
void |
setMintime(String mintime) |
void |
setMinvalue(Double minvalue) |
void |
setSum(Double sum) |
Aggregate |
sum(Double sum) |
String |
toString() |
public Aggregate countgood(Integer countgood)
public Integer getCountgood()
public void setCountgood(Integer countgood)
public Aggregate countuncertain(Integer countuncertain)
public Integer getCountuncertain()
public void setCountuncertain(Integer countuncertain)
public Aggregate countbad(Integer countbad)
public Integer getCountbad()
public void setCountbad(Integer countbad)
public Aggregate sum(Double sum)
public Double getSum()
public void setSum(Double sum)
public Aggregate average(Double average)
public Double getAverage()
public void setAverage(Double average)
public Aggregate mintime(String mintime)
public String getMintime()
public void setMintime(String mintime)
public Aggregate minvalue(Double minvalue)
public Double getMinvalue()
public void setMinvalue(Double minvalue)
public Aggregate maxtime(String maxtime)
public String getMaxtime()
public void setMaxtime(String maxtime)
public Aggregate maxvalue(Double maxvalue)
public Double getMaxvalue()
public void setMaxvalue(Double maxvalue)
public Aggregate firsttime(String firsttime)
public String getFirsttime()
public void setFirsttime(String firsttime)
public Aggregate firstvalue(Double firstvalue)
public Double getFirstvalue()
public void setFirstvalue(Double firstvalue)
public Aggregate lasttime(String lasttime)
public String getLasttime()
public void setLasttime(String lasttime)
public Aggregate lastvalue(Double lastvalue)
public Double getLastvalue()
public void setLastvalue(Double lastvalue)
public boolean equals(Object o)
equals
in class Object
public int hashCode()
hashCode
in class Object
public String toString()
toString
in class Object