|
@@ -15,7 +15,8 @@ public enum FeatureType {
|
|
|
TREAT(Constants.feature_type_treat),
|
|
|
HISTORY(Constants.feature_type_history),
|
|
|
VITAL_INDEX(Constants.feature_type_vital_index),
|
|
|
- TIME(Constants.feature_type_time);
|
|
|
+ TIME(Constants.feature_type_time),
|
|
|
+ NONE(Constants.feature_type_default);
|
|
|
|
|
|
FeatureType(String value) {
|
|
|
this.value = value;
|
|
@@ -54,6 +55,6 @@ public enum FeatureType {
|
|
|
case Constants.feature_type_time:
|
|
|
return FeatureType.TIME;
|
|
|
}
|
|
|
- return FeatureType.SYMPTOM;
|
|
|
+ return FeatureType.NONE;
|
|
|
}
|
|
|
}
|