public boolean verificaDatosVector(Vector v, Object elem){ if (v.contains(elem)){ return true; }else{ return false; } }