commit | adbabca22f11d60d545b37ce416228da4250fdcf | [log] [tgz] |
---|---|---|
author | Hengrui Cao | Tue Jul 12 10:58:22 2022 +0000 |
committer | Gerrit Code Review | Tue Jul 12 10:58:22 2022 +0000 |
tree | 5e9e37b7e5e2e1546983cec8cdce6fdaa54611e1 | |
parent | da1528790a77c8b4a63b2e28fceba2ae6c2bf820 [diff] | |
parent | 7cb93d664fc3116064b774ecb5efbd0d084ae68b [diff] |
Merge "Documents the meal types." into androidx-main
diff --git a/health/health-connect-client/src/main/java/androidx/health/connect/client/records/MealType.kt b/health/health-connect-client/src/main/java/androidx/health/connect/client/records/MealType.kt index c4a2852..40299d1 100644 --- a/health/health-connect-client/src/main/java/androidx/health/connect/client/records/MealType.kt +++ b/health/health-connect-client/src/main/java/androidx/health/connect/client/records/MealType.kt
@@ -20,9 +20,13 @@ /** Type of meal. */ public object MealType { const val UNKNOWN = "unknown" + /** Use this for the first meal of the day, usually the morning meal. */ const val BREAKFAST = "breakfast" + /** Use this for the noon meal. */ const val LUNCH = "lunch" + /** Use this for last meal of the day, usually the evening meal. */ const val DINNER = "dinner" + /** Any meal outside of the usual three meals per day. */ const val SNACK = "snack" }