BrightSide Workbench Full Report + Source Code
org.turro.indicator.Aggregates Class Reference

Public Member Functions

 Aggregates (long count, double min, double max, double average)
 
void setMedian (double median)
 
long getCount ()
 
double getMin ()
 
double getMax ()
 
double getAverage ()
 
double getMedian ()
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 25 of file Aggregates.java.

Constructor & Destructor Documentation

◆ Aggregates()

org.turro.indicator.Aggregates.Aggregates ( long  count,
double  min,
double  max,
double  average 
)

Definition at line 31 of file Aggregates.java.

31  {
32  this.count = count;
33  this.min = min;
34  this.max = max;
35  this.average = average;
36  }

Member Function Documentation

◆ getAverage()

double org.turro.indicator.Aggregates.getAverage ( )

Definition at line 54 of file Aggregates.java.

54  {
55  return average;
56  }

◆ getCount()

long org.turro.indicator.Aggregates.getCount ( )

Definition at line 42 of file Aggregates.java.

42  {
43  return count;
44  }
Here is the caller graph for this function:

◆ getMax()

double org.turro.indicator.Aggregates.getMax ( )

Definition at line 50 of file Aggregates.java.

50  {
51  return max;
52  }

◆ getMedian()

double org.turro.indicator.Aggregates.getMedian ( )

Definition at line 58 of file Aggregates.java.

58  {
59  return median;
60  }

◆ getMin()

double org.turro.indicator.Aggregates.getMin ( )

Definition at line 46 of file Aggregates.java.

46  {
47  return min;
48  }

◆ setMedian()

void org.turro.indicator.Aggregates.setMedian ( double  median)

Definition at line 38 of file Aggregates.java.

38  {
39  this.median = median;
40  }

The documentation for this class was generated from the following file: