22 lines
527 B
Java
22 lines
527 B
Java
// enums/Burrito.java
|
|
// ©2015 MindView LLC: see Copyright.txt
|
|
package enums;
|
|
import static enums.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
|
|
*/
|