You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
322 B
16 lines
322 B
abstract class ActivityInfo {
|
|
// -- Time -- //
|
|
String startTime = "2000-01-01";
|
|
double timeOfActivity = 0.0;
|
|
|
|
// -- BPM -- //
|
|
int bpmMax = 0;
|
|
int bpmMin = 300;
|
|
int bpmAvg = 0;
|
|
|
|
// -- Fonction pour lire le csv et remplir la classe -- //
|
|
ActivityInfo getData(List<List<String>> csv);
|
|
|
|
String toJson();
|
|
}
|