Student.java

Student.java
package Instruction2;

public class Student implements Comparable{
    String imie, nazwisko;
    StudentCondition stan_studenta;
    int rok_urodzenia;
    double ilosc_punktow;

    Student(String name, String lastName, StudentCondition condition, int birthYear, double points){
        this.imie = name;
        this.nazwisko = lastName;
        this.stan_studenta = condition;
        this.rok_urodzenia = birthYear;
        this.ilosc_punktow = points;
    }


}