G P S T

G

getCount() - Static method in class Person
Gets Person count
getFirstName() - Method in class Person
Gets First Name
getLastName() - Method in class Person
Gets Last Name
getMiddleInitial() - Method in class Person
Gets Last Name
getMiddleName() - Method in class Person
Gets Middle Name

P

Person - class Person.
 
Person() - Constructor for class Person
Creates a person object with blank first, last and middle names.
Person(String, String, String) - Constructor for class Person
Sets Person fields according to specified parameters.
Person(Person) - Constructor for class Person
Creates new Person object from another Person

S

setCount() - Static method in class Person
Increments Person counter.
setFirstName(String) - Method in class Person
Sets new First Name
setLastName(String) - Method in class Person
Sets new Last Name
setMiddleInitial() - Method in class Person
Generates the person's middle initial using the person's middle name.
setMiddleName(String) - Method in class Person
Sets new Middle Name

T

toString() - Method in class Person
Returns the person's full name details.

G P S T