17 lines
474 B
Java
17 lines
474 B
Java
// enums/menu/TypeOfFood.java
|
|
// (c)2020 MindView LLC: see Copyright.txt
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
// Visit http://OnJava8.com for more book information.
|
|
// {java enums.menu.TypeOfFood}
|
|
package enums.menu;
|
|
import static enums.menu.Food.*;
|
|
|
|
public class TypeOfFood {
|
|
public static void main(String[] args) {
|
|
Food food = Appetizer.SALAD;
|
|
food = MainCourse.LASAGNE;
|
|
food = Dessert.GELATO;
|
|
food = Coffee.CAPPUCCINO;
|
|
}
|
|
}
|