19 lines
494 B
Java
19 lines
494 B
Java
|
//: enumerated/Burrito.java
|
||
|
package enumerated;
|
||
|
import static enumerated.Spiciness.*;
|
||
|
|
||
|
public class Burrito {
|
||
|
Spiciness degree;
|
||
|
public Burrito(Spiciness degree) { this.degree = degree;}
|
||
|
public String toString() { return "Burrito is "+ degree;}
|
||
|
public static void main(String[] args) {
|
||
|
System.out.println(new Burrito(NOT));
|
||
|
System.out.println(new Burrito(MEDIUM));
|
||
|
System.out.println(new Burrito(HOT));
|
||
|
}
|
||
|
} /* Output:
|
||
|
Burrito is NOT
|
||
|
Burrito is MEDIUM
|
||
|
Burrito is HOT
|
||
|
*///:~
|