- getCounty() - Method in class studenttuition.NYStateResident
-
Returns the student's county of residence in New York State.
- getCredits() - Method in class studenttuition.Student
-
Returns the student's credits field as an int
value.
- getFirstName() - Method in class studenttuition.Student
-
Returns the student's first name field as a String
- getGrade() - Method in class studenttuition.Student
-
Returns the student's grade field as a String,
either A, B+, B, C+, C, D+, D or F.
- getLastName() - Method in class studenttuition.Student
-
Returns the student's last name field as a String
- getNYStateTuition() - Method in class studenttuition.NYStateResident
-
Returns the tuition which must be paid by Nassau County as an int value.
- getState() - Method in class studenttuition.NonResident
-
Returns the return value of the state object's toString() method which is
the student's state location as a string.
- getState() - Method in class studenttuition.ValidState
-
Returns the state abbreviation field as a String
- getTuition() - Method in class studenttuition.NonResident
-
Returns the semester tuition for a student as an int based on number of
credits.
- getTuition() - Method in class studenttuition.NYStateResident
-
Returns the semester tuition for a student as an int based on number of
credits.
- getTuition() - Method in class studenttuition.SeniorCitizen
-
Returns the student's semester tuition field as an int value.
- getTuition() - Method in class studenttuition.SuffolkResident
-
Returns the semester tuition for a student as an int based on number
of credits.
- getTuition() - Method in interface studenttuition.Tuition
-
- getTuitionString() - Method in class studenttuition.NonResident
-
Returns the formatted semester tuition, county of residence and state
location fields with labels as a string.
- getTuitionString() - Method in class studenttuition.NYStateResident
-
Returns the formatted semester tuition and Nassau tuition fields with
labels as a string.
- getTuitionString() - Method in class studenttuition.SeniorCitizen
-
Returns the formatted semester tuition field with a label as a string.
- getTuitionString() - Method in class studenttuition.Student
-
An abstract
placeholder method for the getTuitionString()
method which assures that all subclasses of class Student must
implement this method which is called from the toString() method
of this Student class.
- getTuitionString() - Method in class studenttuition.SuffolkResident
-
Returns the formatted semester tuition field with a label as a string.