-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUtilMethods.java
More file actions
396 lines (286 loc) · 12.3 KB
/
UtilMethods.java
File metadata and controls
396 lines (286 loc) · 12.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
import java.util.Scanner;
import java.util.ArrayList;
public class UtilMethods {
// Creates a new Cookie object, and returns it.
public static Cookie createCookie() {
Scanner input = new Scanner(System.in);
System.out.println("Enter price (double): ");
double price = input.nextDouble();
System.out.println("Enter flavor (String): ");
// input.nextLine() here is called to take in the previous enter, but is not stored anywhere as it is not helpful.
input.nextLine();
String flavor = input.nextLine();
System.out.println("Enter size in inches (double): ");
double inches = input.nextDouble();
System.out.println("Enter type of cookie (ex. chocolate chip) (String): ");
input.nextLine();
String type = input.nextLine();
input.close();
return new Cookie(price, flavor, inches, type);
}
// Creates a new Scone object, and returns it.
public static Scone createScone() {
Scanner input = new Scanner(System.in);
System.out.println("Enter price (double): ");
double price = input.nextDouble();
System.out.println("Enter flavor (String): ");
// input.nextLine() here is called to take in the previous enter, but is not stored anywhere as it is not helpful.
input.nextLine();
String flavor = input.nextLine();
System.out.println("Enter size in inches (double): ");
double inches = input.nextDouble();
System.out.println("Enter height (float): ");
input.nextLine();
float height = input.nextFloat();
input.close();
return new Scone(price, flavor, inches, height);
}
// Creates a new Cake object, and returns it.
public static Cake createCake() {
Scanner input = new Scanner(System.in);
System.out.println("Enter price (double): ");
double price = input.nextDouble();
System.out.println("Enter flavor (String): ");
// input.nextLine() here is called to take in the previous enter, but is not stored anywhere as it is not helpful.
input.nextLine();
String flavor = input.nextLine();
System.out.println("Enter size in inches (double): ");
double inches = input.nextDouble();
System.out.println("Enter the number of layers (int): ");
int layerNum = input.nextInt();
System.out.println("Does the cake have frosting? (boolean)");
boolean hasFrosting = input.nextBoolean();
System.out.println("Enter the cake design details (String): ");
input.nextLine();
String design = input.nextLine();
String frostingColor = "N/A";
if (hasFrosting) {
System.out.println("Enter the frosting color (String): ");
frostingColor = input.nextLine();
}
input.close();
return new Cake(price, flavor, inches, layerNum, hasFrosting, design, frostingColor);
}
// Creates a new Cupcake object, and returns it.
public static Cupcake createCupcake() {
Scanner input = new Scanner(System.in);
System.out.println("Enter price (double): ");
double price = input.nextDouble();
System.out.println("Enter flavor (String): ");
// input.nextLine() here is called to take in the previous enter, but is not stored anywhere as it is not helpful.
input.nextLine();
String flavor = input.nextLine();
System.out.println("Enter size in inches (double): ");
double inches = input.nextDouble();
System.out.println("Does the cupcake have frosting? (boolean)");
boolean hasFrosting = input.nextBoolean();
String frostingColor = "N/A";
if (hasFrosting) {
System.out.println("Enter the frosting color (String): ");
input.nextLine();
frostingColor = input.nextLine();
}
input.close();
return new Cupcake(price, flavor, inches, hasFrosting, frostingColor);
}
// Removes the cookie from the pastries parameter, then returns pastries.
public static ArrayList<Object> removeCookie(ArrayList<Object> pastries) {
Scanner input = new Scanner(System.in);
// Boolean used to determine if there are any cookies that need to be removed
boolean shouldContinue = false;
for (Object pastry : pastries) {
if (pastry instanceof Cookie) {
shouldContinue = true;
}
}
// Returns normally if there are no cookies in pastries.
if (!shouldContinue) {
System.out.println("There are no cookies to remove!");
return pastries;
}
System.out.println("Which cookie do you want to remove? Use the number next to the cookie you would like to remove: ");
// Used for the number of Cookie objects that could be removed
int count = 0;
// Print out all of the cookies
for (Object pastry : pastries) {
if (pastry instanceof Cookie) {
// Make the pastry into a Cookie and print out some attributes.
Cookie cookieToDelete = (Cookie) pastry;
count++;
System.out.println(count + ": $" + cookieToDelete.getPrice() + " " + cookieToDelete.getTypeOfCookie() + " cookie");
}
}
// Asks which index number (count) to remove
int indexToRemove = input.nextInt();
// The index of the whole array that is currently being checked.
int currentIndex = 0;
// The number of Cookie objects that have been counted.
count = 0;
// This is a clever workaround to avoid an error with removing the value from pastries directly.
ArrayList<Object> pastriesToRemove = new ArrayList<>();
for (Object pastry : pastries) {
// Check if the object is a cookie, and if so, if it is the one that we need to remove.
if (pastry instanceof Cookie) {
if (count == indexToRemove - 1) {
// Add whichever pastry needs to be removed to pastriesToRemove
pastriesToRemove.add(pastries.get(currentIndex));
}
count++;
}
currentIndex++;
}
// Remove the pastry that was discarded.
pastries.removeAll(pastriesToRemove);
return pastries;
}
// Removes the scone from the pastries parameter, then returns pastries.
public static ArrayList<Object> removeScone(ArrayList<Object> pastries) {
Scanner input = new Scanner(System.in);
// Boolean used to determine if there are any cakes that need to be removed
boolean shouldContinue = false;
for (Object pastry : pastries) {
if (pastry instanceof Scone) {
shouldContinue = true;
}
}
// Returns normally if there are no scones in pastries.
if (!shouldContinue) {
System.out.println("There are no scones to remove!");
return pastries;
}
System.out.println("Which scone do you want to remove? Use the number next to the scone you would like to remove: ");
// Used for the number of Scone objects that could be removed
int count = 0;
// Print out all of the scones
for (Object pastry : pastries) {
if (pastry instanceof Scone) {
// Make the pastry into a Scone and print out some attributes.
Scone sconeToDelete = (Scone) pastry;
count++;
System.out.println(count + ": " + sconeToDelete.getSize() + " x " + sconeToDelete.getHeight() + " inch, $" + sconeToDelete.getPrice() + " scone");
}
}
// Asks which index number (count) to remove
int indexToRemove = input.nextInt();
// The index of the whole array that is currently being checked.
int currentIndex = 0;
// The number of Scone objects that have been counted.
count = 0;
// This is a clever workaround to avoid an error with removing the value from pastries directly.
ArrayList<Object> pastriesToRemove = new ArrayList<>();
for (Object pastry : pastries) {
// Check if the object is a scone, and if so, if it is the one that we need to remove.
if (pastry instanceof Scone) {
if (count == indexToRemove - 1) {
// Add whichever pastry needs to be removed to pastriesToRemove
pastriesToRemove.add(pastries.get(currentIndex));
}
count++;
}
currentIndex++;
}
// Remove the pastry that was discarded.
pastries.removeAll(pastriesToRemove);
return pastries;
}
// Removes the cake from the pastries parameter, then returns pastries.
public static ArrayList<Object> removeCake(ArrayList<Object> pastries) {
Scanner input = new Scanner(System.in);
// Boolean used to determine if there are any cakes that need to be removed
boolean shouldContinue = false;
for (Object pastry : pastries) {
if (pastry instanceof Cake) {
shouldContinue = true;
}
}
// Returns normally if there are no cakes in pastries.
if (!shouldContinue) {
System.out.println("There are no cakes to remove!");
return pastries;
}
System.out.println("Which cake do you want to remove? Use the number next to the cake you would like to remove: ");
// Used for the number of Cake objects that could be removed
int count = 0;
// Print out all of the cakes
for (Object pastry : pastries) {
if (pastry instanceof Cake) {
// Make the pastry into a Cake and print out some attributes.
Cake cakeToDelete = (Cake) pastry;
count++;
System.out.println(count + ": $" + cakeToDelete.getPrice() + " " + cakeToDelete.getFlavor() + " cake");
}
}
// Asks which index number (count) to remove
int indexToRemove = input.nextInt();
// The index of the whole array that is currently being checked.
int currentIndex = 0;
// The number of Cake objects that have been counted.
count = 0;
// This is a clever workaround to avoid an error with removing the value from pastries directly.
ArrayList<Object> pastriesToRemove = new ArrayList<>();
for (Object pastry : pastries) {
// Check if the object is a cake, and if so, if it is the one that we need to remove.
if (pastry instanceof Cake) {
if (count == indexToRemove - 1) {
// Add whichever pastry needs to be removed to pastriesToRemove
pastriesToRemove.add(pastries.get(currentIndex));
}
count++;
}
currentIndex++;
}
// Remove the pastry that was discarded.
pastries.removeAll(pastriesToRemove);
return pastries;
}
// Removes the cupcake from the pastries parameter, then returns pastries.
public static ArrayList<Object> removeCupcake(ArrayList<Object> pastries) {
Scanner input = new Scanner(System.in);
// Boolean used to determine if there are any cupcakes that need to be removed
boolean shouldContinue = false;
for (Object pastry : pastries) {
if (pastry instanceof Cupcake) {
shouldContinue = true;
}
}
// Returns normally if there are no cupcakes in pastries.
if (!shouldContinue) {
System.out.println("There are no cupcakes to remove!");
return pastries;
}
System.out.println("Which cupcakes do you want to remove? Use the number next to the cupcakes you would like to remove: ");
// Used for the number of Cupcake objects that could be removed
int count = 0;
// Print out all of the cupcakes
for (Object pastry : pastries) {
// Check if the object is a cupcake, and if so, if it is the one that we need to remove.
if (pastry instanceof Cupcake) {
// Make the pastry into a Cupcake and print out some attributes.
Cupcake cupcakeToDelete = (Cupcake) pastry;
count++;
System.out.println(count + ": $" + cupcakeToDelete.getPrice() + " " + cupcakeToDelete.getFlavor() + " cupcake");
}
}
// Asks which index number (count) to remove
int indexToRemove = input.nextInt();
// The index of the whole array that is currently being checked.
int currentIndex = 0;
// The number of Cupcake objects that have been counted.
count = 0;
// This is a clever workaround to avoid an error with removing the value from pastries directly.
ArrayList<Object> pastriesToRemove = new ArrayList<>();
for (Object pastry : pastries) {
if (pastry instanceof Cupcake) {
if (count == indexToRemove - 1) {
// Add whichever pastry needs to be removed to pastriesToRemove
pastriesToRemove.add(pastries.get(currentIndex));
}
count++;
}
currentIndex++;
}
// Remove the pastry that was discarded.
pastries.removeAll(pastriesToRemove);
return pastries;
}
}