2015-07-27 23:49:53 +02:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.model;
|
|
|
|
|
2016-07-25 22:19:39 +02:00
|
|
|
public interface ActivitySample extends Sample {
|
2015-07-27 23:49:53 +02:00
|
|
|
/**
|
|
|
|
* Returns the raw activity kind value as recorded by the SampleProvider
|
|
|
|
*/
|
2016-02-29 20:54:39 +01:00
|
|
|
int getRawKind();
|
2015-07-27 23:49:53 +02:00
|
|
|
|
2016-05-01 23:56:14 +02:00
|
|
|
/**
|
|
|
|
* Returns the activity kind value as recorded by the SampleProvider
|
|
|
|
*
|
|
|
|
* @see ActivityKind
|
|
|
|
*/
|
|
|
|
int getKind();
|
2015-07-27 23:49:53 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the raw intensity value as recorded by the SampleProvider
|
|
|
|
*/
|
2016-02-29 20:54:39 +01:00
|
|
|
int getRawIntensity();
|
2015-07-27 23:49:53 +02:00
|
|
|
|
2016-05-01 23:56:14 +02:00
|
|
|
/**
|
|
|
|
* Returns the normalized intensity value between 0 and 1
|
|
|
|
*/
|
|
|
|
float getIntensity();
|
2015-07-27 23:49:53 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the number of steps performed during the period of this sample
|
|
|
|
*/
|
2016-02-29 20:54:39 +01:00
|
|
|
int getSteps();
|
2015-07-27 23:49:53 +02:00
|
|
|
}
|