Advertisement
Guest User

Untitled

a guest
Mar 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. package oop.PizzaModified;
  2.  
  3. public enum PizzaType {
  4. HAWAIIAN(10), MEATLOVERS(12), VEGETARIAN(9);
  5.  
  6. private int price;
  7.  
  8. PizzaType(int price) {
  9. this.price = price;
  10. }
  11.  
  12. public int price() {
  13. return price;
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement