profileShare

rasmusjy / tasteprint

Read-only snapshot

No repository description.

main default branch 169 files Expires Sep 13, 2026, 9:06 AM
DishCategory.java 394 bytes
1 package com.tasteprint.catalog;
2
3 public enum DishCategory {
4 STAPLE("Everyday table"),
5 STREET("Street bite"),
6 BREAKFAST("Morning ritual"),
7 SWEET("Sweet finish"),
8 DRINK("Local pour"),
9 SIGNATURE("Defining dish");
10
11 private final String label;
12
13 DishCategory(String label) {
14 this.label = label;
15 }
16
17 public String label() {
18 return label;
19 }
20 }
21