Lines Matching refs:Cheeses
26 public class Cheeses {
27 static final String[] CHEESES = {
40 "Blue Vein (Australian)", "Blue Vein Cheeses", "Bocconcini", "Bocconcini (Australian)",
102 "Manouri", "Manur", "Marble Cheddar", "Marbled Cheeses", "Maredsous", "Margotin",
107 "Molbo", "Monastery Cheeses", "Mondseer", "Mont D'or Lyonnais", "Montasio",
162 for (int i = 0, z = CHEESES.length ; i < z ; i++) {
163 items.add(CHEESES[i]);
169 * Return a list of random cheeses.
171 * @param count the amount of cheeses to return.
178 count = Math.min(count, CHEESES.length);
181 items.add(CHEESES[random.nextInt(CHEESES.length)]);