6 lines
92 B
Java
6 lines
92 B
Java
// housekeeping/Spiciness.java
|
|
|
|
public enum Spiciness {
|
|
NOT, MILD, MEDIUM, HOT, FLAMING
|
|
}
|