Skip navigation links
C G M S T 

C

changeName(String, String) - Method in class Student
changeName(String, String) This instance method takes in two Strings as the first and last names.
classStatistics() - Static method in class Student
classStatistics() This class method returns the number of grades, sum of all grades, average grade, lowest grade, and highest grade as one String.

G

getAverageGrade() - Static method in class Student
getAverageGrade() This class method returns the average grade of all students.
getGrade() - Method in class Student
getGrade() This instance method returns the student's grade.
getHighestGrade() - Static method in class Student
getHighestGrade() This class method returns the highest grade of all students.
getID() - Method in class Student
getID() This instance method returns the student ID.
getLowestGrade() - Static method in class Student
getLowestGrade() This class method returns the lowest grade of all students.
getName() - Method in class Student
getName() This instance method returns the student's full name (first + last).
getNumberOfGrades() - Static method in class Student
getNumberOfGrades() This class method returns the number of grades, in this case equivalent to the number of students.
getTotalGrade() - Static method in class Student
getTotalGrade() This class method returns the sum of all the grades.
GradeSimulator - Class in <Unnamed>
 
GradeSimulator() - Constructor for class GradeSimulator
 

M

main(String[]) - Static method in class GradeSimulator
 

S

setGrade(int) - Method in class Student
setGrade(int) This instance method records (sets) the student's grade.
Student - Class in <Unnamed>
 
Student(String, String) - Constructor for class Student
Student(String, String) This designated constructor sets the first and last name of the student.
Student(String) - Constructor for class Student
Student(String) This constructor calls the designated constructor Student(String, String), with the specified first name, and lastName = "LNU".

T

toString() - Method in class Student
toString() This instance method returns the name, SID, and grade of the student.
C G M S T 
Skip navigation links