Gerando o HashCode e Equal pelo eclipse comparando somente o nome.
@Override public int hashCode() { return Objects.hash(nome); }
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Aluno other = (Aluno) obj;
return Objects.equals(nome, other.nome);
}