|
@@ -13,7 +13,8 @@ public enum FeatureType {
|
|
|
PACS(Constants.feature_type_pacs),
|
|
|
FEATURE(Constants.feature_type_feature),
|
|
|
TREAT(Constants.feature_type_treat),
|
|
|
- HISTORY(Constants.feature_type_history);
|
|
|
+ HISTORY(Constants.feature_type_history),
|
|
|
+ VITAL_INDEX(Constants.feature_type_vital_index);
|
|
|
|
|
|
FeatureType(String value) {
|
|
|
this.value = value;
|
|
@@ -47,6 +48,8 @@ public enum FeatureType {
|
|
|
return FeatureType.HISTORY;
|
|
|
case Constants.feature_type_feature:
|
|
|
return FeatureType.FEATURE;
|
|
|
+ case Constants.feature_type_vital_index:
|
|
|
+ return FeatureType.VITAL;
|
|
|
}
|
|
|
return FeatureType.SYMPTOM;
|
|
|
}
|