21 lines
547 B
Java
21 lines
547 B
Java
//: enumerated/Burrito.java
|
|
// ©2015 MindView LLC: see Copyright.txt
|
|
package enumerated;
|
|
import static enumerated.Spiciness.*;
|
|
|
|
public class Burrito {
|
|
Spiciness degree;
|
|
public Burrito(Spiciness degree) { this.degree = degree;}
|
|
@Override
|
|
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
|
|
*///:~
|