2015-04-20 15:36:01 -07:00
|
|
|
|
//: enumerated/Burrito.java
|
2015-05-29 14:18:51 -07:00
|
|
|
|
// <20>2015 MindView LLC: see Copyright.txt
|
2015-04-20 15:36:01 -07:00
|
|
|
|
package enumerated;
|
|
|
|
|
import static enumerated.Spiciness.*;
|
|
|
|
|
|
|
|
|
|
public class Burrito {
|
|
|
|
|
Spiciness degree;
|
|
|
|
|
public Burrito(Spiciness degree) { this.degree = degree;}
|
2015-05-05 11:20:13 -07:00
|
|
|
|
@Override
|
2015-04-20 15:36:01 -07:00
|
|
|
|
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
|
|
|
|
|
*///:~
|