Advertisement
Guest User

Untitled

a guest
Mar 11th, 2020
483
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. package E04_PizzaCalories;
  2.  
  3. import java.util.Map;
  4.  
  5. public class TypeUtils {
  6.  
  7. public final static Map<String, Double> DOUGH_TYPES =
  8. Map.of("White", 1.5,
  9. "Wholegrain", 1.0);
  10.  
  11. public final static Map<String, Double> BAKING_TECHNIQUES =
  12. Map.of("Crispy", 0.9,
  13. "Chewy", 1.1,
  14. "Homemade", 1.0);
  15.  
  16. public final static Map<String, Double> TOPPING_TYPES =
  17. Map.of("Meat", 1.2,
  18. "Veggies", 0.8,
  19. "Cheese", 1.1,
  20. "Sauce", 0.9);
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement