opa 
tenho um array que estou usando num jComboBox, mas estou com problemas para deixar a primeira posição vazia…se eu deixo ela vazia, ele apaga o valor do primeiro resultado do banco rsrs
public List getAcquirer() throws SQLException {
PreparedStatement stmt = this.connection.prepareStatement("select * from hipaas.tb_acquirer");
ResultSet rs = stmt.executeQuery();
List acquirers = new ArrayList();
while(rs.next()) {
acquirers.add(rs.getString("ACQUIRERDESCRIPTION"));
}
Acquirer acq = new Acquirer();
acq.setNome((String[]) acquirers.toArray(new String[1]));
return acquirers;
}
e meu Acquirer.java
public static String[] nome;
public String status;
public static String[] getNome() throws SQLException {
GUIDAO dao = new GUIDAO();
dao.getAcquirer();
nome[0] = "";
return nome;
}