Class StudenteEsteso

java.lang.Object
  extended by Studente
      extended by StudenteEsteso
All Implemented Interfaces:
java.lang.Comparable<Studente>

public class StudenteEsteso
extends Studente

Studente.java -- associa in modo immutabile nome e numero di matricola due oggetti sono uguali quando hanno la stessa matricola Supporta l'ordinamento per matricola e per nome.


Field Summary
static int MATRICOLA
           
static int NOME
           
 
Constructor Summary
StudenteEsteso(java.lang.String n, int m)
           
 
Method Summary
 int compareTo(Studente s)
          confronta in base al numero di matricola
static void ordinaPer(int valore)
           
 
Methods inherited from class Studente
matricola, nome, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

NOME

public static final int NOME
See Also:
Constant Field Values

MATRICOLA

public static final int MATRICOLA
See Also:
Constant Field Values
Constructor Detail

StudenteEsteso

public StudenteEsteso(java.lang.String n,
                      int m)
Method Detail

compareTo

public int compareTo(Studente s)
Description copied from class: Studente
confronta in base al numero di matricola

Specified by:
compareTo in interface java.lang.Comparable<Studente>
Overrides:
compareTo in class Studente
Parameters:
s - studente
Returns:
ordine

ordinaPer

public static void ordinaPer(int valore)