Uses of Class
Student

  • Uses of Student in <Unnamed>

    Fields in <Unnamed> with type parameters of type Student
    Modifier and Type
    Field
    Description
    Tutor.students
     
    Methods in <Unnamed> that return types with arguments of type Student
    Modifier and Type
    Method
    Description
    Tutor.getStudents()
    Returns an ArrayList of all the tutor's students
    Methods in <Unnamed> with parameters of type Student
    Modifier and Type
    Method
    Description
    void
    Tutor.addStudent​(Student s)
    Adds a new students to a teacher's existing list of students
    static String
    Main.sendInvoice​(Student student, int number)
    If a valid session number is provided by the tutor, the total fees for the particular session are calculated and returned as a string.
    static String
    Main.sendReminder​(Student student)
    This method uses the Student object provided as input to send a reminder to the student, which includes the student's name and the notes taken during the meeting.