public boolean hasValueList(final ActionInsertFactCol52 col) { if (col.getValueList() != null && !"".equals(col.getValueList())) { return true; } return false; }
private String[] getValueList(final ActionInsertFactCol52 col) { if (col.getValueList() != null && !"".equals(col.getValueList())) { return col.getValueList().split(","); } return new String[0]; }