-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathName.java
211 lines (152 loc) · 5.84 KB
/
Name.java
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
import javax.swing.JOptionPane;
public class Name {
private String firstName;
private char middleInitial;
private String lastName;
public Name() {
getName();
}
public Name(String firstName) {
}
public Name(String firstName, char middleInitial, String lastName) {
this.firstName = firstName;
this.middleInitial = middleInitial;
this.lastName = lastName;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
//capitalize the first letter of first name and leaves the rest in lower case
firstName = firstName.substring(0, 1).toUpperCase() + firstName.substring(1).toLowerCase();
this.firstName = firstName;
}
public char getMiddleInitial() {
return middleInitial;
}
public void setMiddleInitial(char middleInitial) {
//checks to see if the player has a middle name or not
if(middleInitial == 'X') {
middleInitial = ' ';
}
this.middleInitial = middleInitial;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
//capitalize the first letter of last name and leaves the rest in lower case
lastName = lastName.substring(0, 1).toUpperCase() + lastName.substring(1).toLowerCase();
this.lastName = lastName;
}
public String toString() {
String message = "";
//if middle name is inexistent, print a blank space
if(middleInitial == ' ') {
message += firstName + middleInitial + lastName;
}
else {//if exists, print first letter followed by a dot
message += firstName + " " + middleInitial +"." + " " + lastName;
}
return message;
}
public void getName() {
firstName = validateFirstName(firstName);
setFirstName(firstName);
middleInitial = validateMiddleInitial(middleInitial);
setMiddleInitial(middleInitial);
lastName = validateLastName(lastName);
setLastName(lastName);
}
//checks every char in a string with the regex expression and makes sure all of them are alphabet letters
//I added the ' sign and 'space' to be a valid char because many names use it
public static boolean isStringOnlyAlphabet(String name) {
return ((!name.equals("")) && (name != null) && (name.matches("^[a-zA-Z'\' ']*$")));
}
//validate first name
public static String validateFirstName(String firstName) {
String message = "What is your first name: ";
boolean isOnlyAlphabet = true;
do{
try {//catches if user clics cancel or X
firstName = JOptionPane.showInputDialog(message);
//checks if all elements of the string are letters
isOnlyAlphabet = isStringOnlyAlphabet(firstName);
//lets the user know they did not enter letters
if(isOnlyAlphabet == false) {
JOptionPane.showMessageDialog(null, "Please enter a name that contains only letters.");
}
else {
//if they entered space as the first letter, make them enter the name again
if(firstName.charAt(0) == ' ') {
JOptionPane.showMessageDialog(null, "First letter of your name cannot be a space");
isOnlyAlphabet = false;
}
}
}catch(java.lang.NullPointerException e) {
JOptionPane.showMessageDialog(null, "Please enter a valid selection");
isOnlyAlphabet = false;
}
}while(isOnlyAlphabet == false);
return firstName;
}
//validate middleInitial
public static char validateMiddleInitial(char middleInitial) {
String message ="What is your middle name: Enter X if inexistent ";
String tempString = "";
boolean isOnlyAlphabet = true;
do{
try {//catches if user clics cancel or X
//take all of the characters entered to check if they are all letters
tempString = JOptionPane.showInputDialog(message);
//checks if all elements of the string are letters
isOnlyAlphabet = isStringOnlyAlphabet(tempString);
//lets the user know they did not enter letters
if(isOnlyAlphabet == false) {
JOptionPane.showMessageDialog(null, "Please enter a name that contains only letters.");
}
else {// if they are all letters, take the first letter
//if they entered space as the first letter, make them enter the name again
if(tempString.charAt(0) == ' ') {
JOptionPane.showMessageDialog(null, "First letter of your name cannot be a space");
isOnlyAlphabet = false;
}
else {
middleInitial = tempString.toUpperCase().charAt(0);
}
}
}catch(java.lang.NullPointerException e) {
JOptionPane.showMessageDialog(null, "Please enter a valid selection");
isOnlyAlphabet = false;
}
}while(isOnlyAlphabet == false);
return middleInitial;
}
//validate last Name
public static String validateLastName(String lastName) {
String message = "What is your last name: ";
boolean isOnlyAlphabet = true;
do{
try {//catches if user clics cancel or X
lastName = JOptionPane.showInputDialog(message);
//checks if all elements of the string are letters
isOnlyAlphabet = isStringOnlyAlphabet(lastName);
//lets the user know they did not enter letters
if(isOnlyAlphabet == false) {
JOptionPane.showMessageDialog(null, "Please enter a name that contains only letters.");
}
else {
//if they entered space as the first letter, make them enter the name again
if(lastName.charAt(0) == ' ') {
JOptionPane.showMessageDialog(null, "First letter of your name cannot be a space");
isOnlyAlphabet = false;
}
}
}catch(java.lang.NullPointerException e) {
JOptionPane.showMessageDialog(null, "Please enter a valid selection");
isOnlyAlphabet = false;
}
}while(isOnlyAlphabet == false);
return lastName;
}
}