-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.java
More file actions
359 lines (261 loc) · 6.87 KB
/
Directory.java
File metadata and controls
359 lines (261 loc) · 6.87 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
package phoneBookProject;
public class Directory {
//create an array of person
Person[]Contact = new Person[0];
// adds a person to the array
public void addPerson(Person newPerson) {
// // create temporary array that is 1 larger than the current array
Person[]temp = new Person[Contact.length + 1];
// add the Person in the original array to the temporary one
for (int i = 0; i < Contact.length; i++) {
temp[i] = Contact[i];
}
// add the new Person to the end of the temp array
temp[temp.length - 1 ]= newPerson;
// reassign the original array to the new one
Contact = temp;
}
public Person[] getDirectory() {
return Contact;
}
public void printPersonArray(Person[]findPerson) {
for(int i = 0; i < findPerson.length; i++) {
System.out.println("\n------Person Detail------\n");
Contact[i].getPerson();
}
}
public void printSearchArray(Person[] search) {
for(int i = 0; i < search.length; i++) {
System.out.println("\n------Person Detail------\n");
search[i].getPerson();
}
}
// removes a person from the array
public void removePerson(Person removed ) {
// cerates a temporary arrray
Person[] temp = new Person[Contact.length - 1];
int c =0;
// loops through and adds everything the person to be removed to the empty arry
for(int i =0; i < Contact.length; i++) {
if(Contact[i] != removed) {
temp[c] = Contact[i];
c++;
}
}
Contact = temp;
}
// search a person by a phone number
public Person getByPhone(long phone) {
int temp = 0;
for(int i = 0; i < Contact.length; i++) {
if(Contact[i].getPhoneNumber() == phone) {
temp = i;
break;
}
}
return Contact[temp];
}
public void UpdateMenu(Person update) {
Person[] temp = new Person[Contact.length - 1];
int d =0;
// loops through and adds everything the person to be update to the empty arry
for(int i =0; i < Contact.length; i++) {
if(Contact[i] == update) {
temp[d] = Contact[i];
d++;
}
}
Contact = temp;
}
// search a person by a lastName
public Person getUpdatelastName(String lastName) {
int temp = 0;
for(int i = 0; i < Contact.length; i++) {
if(Contact[i].getLastName() == lastName) {
temp = i;
break;
}
}
return Contact[temp];
}
public Person getUpdatefullName(String fullName) {
int temp = 0;
for(int i = 0; i < Contact.length; i++) {
if(Contact[i].getFullName() == fullName) {
temp = i;
break;
}
}
return Contact[temp];
}
public Person getUpdateState(String state) {
int temp = 0;
for(int i = 0; i < Contact.length; i++) {
if(Contact[i].getFullName() == state) {
temp = i;
break;
}
}
return Contact[temp];
}
public Person getUpdateCity(String city) {
int temp = 0;
for(int i = 0; i < Contact.length; i++) {
if(Contact[i].getCity() == city) {
temp = i;
break;
}
}
return Contact[temp];
}
public Person getUpdateStreet(String street) {
int temp = 0;
for(int i = 0; i < Contact.length; i++) {
if(Contact[i].getStreet() == street) {
temp = i;
break;
}
}
return Contact[temp];
}
public Person getUpdateZipcode(double zipcode) {
int temp = 0;
for(int i = 0; i < Contact.length; i++) {
if(Contact[i].getZipcode() == zipcode) {
temp = i;
break;
}
}
return Contact[temp];
}
public Person getUpdatePhoneNumber(long phoneNumber) {
int temp = 0;
for(int i = 0; i < Contact.length; i++) {
if(Contact[i].getPhoneNumber() == phoneNumber) {
temp = i;
break;
}
}
return Contact[temp];
}
// search by methode( fistName, lastName,....)
public Person[] getByFirstName(String fisrtName) {
int count = 0;
for(int i =0; i < Contact.length; i++) {
if(Contact[i].getFirstName().equals(fisrtName)) {
count++;
}
}
Person[] newArray = new Person[count];
int count2 = 0;
for(int i = 0; i < Contact.length; i++) {
if(Contact[i].getFirstName().equals(fisrtName)) {
newArray[count2]=Contact[i];
count2++;
}
}
return newArray;
}
public Person[] getByLastName(String lastName) {
int count = 0;
for(int i =0; i < Contact.length; i++) {
if(Contact[i].getLastName().equals(lastName)) {
count++;
}
}
Person[] newArray = new Person[count];
int count2 = 0;
for(int i = 0; i < Contact.length; i++) {
if(Contact[i].getLastName().equals(lastName)) {
newArray[count2]=Contact[i];
count2++;
}
}
return newArray;
}
public Person[] getByMiddleName(String middleName) {
int count = 0;
for(int i =0; i < Contact.length; i++) {
if(Contact[i].getMiddleName().equals(middleName)) {
count++;
}
}
Person[] newArray = new Person[count];
int count2 = 0;
for(int i = 0; i < Contact.length; i++) {
if(Contact[i].getMiddleName().equals(middleName)) {
newArray[count2]=Contact[i];
count2++;
}
}
return newArray;
}
public Person[] getByFullName(String fullName) {
int count = 0;
for(int i =0; i < Contact.length; i++) {
if(Contact[i].getFullName().equals(fullName)) {
count++;
}
}
Person[] newArray = new Person[count];
int count2 = 0;
for(int i = 0; i < Contact.length; i++) {
if(Contact[i].getFullName().equals(fullName)) {
newArray[count2]=Contact[i];
count2++;
}
}
return newArray;
}
public Person[] getByState(String state) {
int count = 0;
for(int i =0; i < Contact.length; i++) {
if(Contact[i].getState().equals(state)) {
count++;
}
}
Person[] newArray = new Person[count];
int count2 = 0;
for(int i = 0; i < Contact.length; i++) {
if(Contact[i].getState().equals(state)) {
newArray[count2]=Contact[i];
count2++;
}
}
return newArray;
}
public Person[] getByCity(String city) {
int count = 0;
for(int i =0; i < Contact.length; i++) {
if(Contact[i].getCity().equals(city)) {
count++;
}
}
Person[] newArray = new Person[count];
int count2 = 0;
for(int i = 0; i < Contact.length; i++) {
if(Contact[i].getCity().equals(city)) {
newArray[count2]=Contact[i];
count2++;
}
}
return newArray;
}
public Person[] getByStreet(String street) {
int count = 0;
for(int i =0; i < Contact.length; i++) {
if(Contact[i].getStreet().equals(street)) {
count++;
}
}
Person[] newArray = new Person[count];
int count2 = 0;
for(int i = 0; i < Contact.length; i++) {
if(Contact[i].getStreet().equals(street)) {
newArray[count2]=Contact[i];
count2++;
}
}
return newArray;
}
}