/** * Verifica se um aluno é realmente da faculdade ou não * * @param aluno * @return Verdadeiro se for estudante e falso se não for estudante */ public boolean existe(Aluno aluno) { boolean resultado = false; for (int i = 0; i < this.listaDeAlunos.size(); i++) { if (this.listaDeAlunos.get(i).getCpf().equals(aluno.getCpf())) { resultado = true; } } return resultado; }
private int procurarIndice(Aluno aluno) { int resultado = -1; for (int i = 0; i < this.listaDeAlunos.size(); i++) { if (listaDeAlunos.get(i).getCpf().equals(aluno.getCpf())) { resultado = i; } } return resultado; }