Como posso declarar o vetor?
package interfaces;
import excecoes.ContatoNaoExisteException;
public class Persistencia {
void gravar(Object obj);
Object buscar(Object obj) throws ContatoNaoExisteException;
void excluir (Object obj);
void alterar (Object obj);
}