12 lines
254 B
Java
12 lines
254 B
Java
![]() |
//: housekeeping/SimpleEnumUse.java
|
|||
|
// <20>2015 MindView LLC: see Copyright.txt
|
|||
|
|
|||
|
public class SimpleEnumUse {
|
|||
|
public static void main(String[] args) {
|
|||
|
Spiciness howHot = Spiciness.MEDIUM;
|
|||
|
System.out.println(howHot);
|
|||
|
}
|
|||
|
} /* Output:
|
|||
|
MEDIUM
|
|||
|
*///:~
|