Skip to content

Instantly share code, notes, and snippets.

@izznfkhrlislm
Created October 23, 2021 11:15
Show Gist options
  • Save izznfkhrlislm/600f0cd583f9cdff31d0a1f40b2ccfc2 to your computer and use it in GitHub Desktop.
Save izznfkhrlislm/600f0cd583f9cdff31d0a1f40b2ccfc2 to your computer and use it in GitHub Desktop.
package com.tokopedia.izzanfi.TokopediaTeToSeConversion.models;
public enum GroceryType {
VEGETABLE ("Vegetables"),
FRUIT ("Fruit"),
MEAT ("Meat"),
PASTRY ("Pastry");
String groceryName;
GroceryType(String groceryName) {
this.groceryName = groceryName;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment