All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.cnr.contab.util.LISTToStringConverter Maven / Gradle / Ivy

/*
 * Copyright (C) 2019  Consiglio Nazionale delle Ricerche
 *
 *     This program is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU Affero General Public License as
 *     published by the Free Software Foundation, either version 3 of the
 *     License, or (at your option) any later version.
 *
 *     This program is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *     GNU Affero General Public License for more details.
 *
 *     You should have received a copy of the GNU Affero General Public License
 *     along with this program.  If not, see .
 */

package it.cnr.contab.util;

import java.io.Serializable;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Arrays;
import java.util.List;

import org.apache.commons.lang.StringUtils;

import it.cnr.jada.persistency.sql.LoggableStatement;
import it.cnr.jada.persistency.sql.SQLConverter;

public class LISTToStringConverter implements SQLConverter, Serializable{

	private static final long serialVersionUID = 1L;

	public Class getTargetJavaType(int i, boolean flag) {
		return String.class;
	}

	@SuppressWarnings("unchecked")
	public void javaToSql(LoggableStatement preparedstatement, Object obj,
			int i, int j) throws SQLException {
		if (obj == null)
			preparedstatement.setNull(i, j);
		else
			preparedstatement.setString(i, StringUtils.join(((List)obj).toArray(), ";"));		
	}

	public Object sqlToJava(ResultSet resultset, String s) throws SQLException {
		String s1 = resultset.getString(s);
		if (s1 == null || s1.length() == 0) {
			return null;
		} else {
			return Arrays.asList(StringUtils.split(s1, ";"));
		}
	}

	@SuppressWarnings("unchecked")
	public Object javaToSql(Object obj) {
		return StringUtils.join(((List)obj).toArray(), ";");	
	}

	public Object sqlToJava(Object obj) {
		return Arrays.asList(StringUtils.split(String.valueOf(obj), ";"));
	}

	public String columnName(String columnName) {
		return columnName;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy