Blame view
app/src/main/java/com/dinhcv/lifelogpedometer/utils/Const.java
633 Bytes
|
7f095a929
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
package com.dinhcv.lifelogpedometer.utils;
public class Const {
public static int STEP_GOAL = 10000;
public static int STEP_SIZE = 75; //cm
public static final String EMAIL = "email";
public enum DATA_TYPE{
ONE_DAY(1),
ONE_WEEK(2),
ONE_MONTH(3),
THREE_MONTH(4),
SIX_MONTH(5);
public int value;
DATA_TYPE(int value){
this.value = value;
}
}
public enum STEP_TYPE{
WALKING(1),
RUNNING(2),
BIKE(3);
public int value;
STEP_TYPE(int value){
this.value = value;
}
}
}
|