/** * DataCleaner (community edition) * Copyright (C) 2014 Neopost - Customer Information Management * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * 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 Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA */ package org.datacleaner.components.fuse; import org.datacleaner.api.Converter; import org.datacleaner.util.convert.ArrayConverter; import org.datacleaner.util.convert.SerializationStringEscaper; import org.datacleaner.util.convert.StandardTypeConverter; /** * A {@link Converter} for {@link CoalesceUnit} */ public class CoalesceUnitConverter implements Converter<CoalesceUnit> { private final ArrayConverter delegate = new ArrayConverter(new StandardTypeConverter()); @Override public CoalesceUnit fromString(final Class<?> type, final String serializedForm) { final String[] columnNames = (String[]) delegate.fromString(String[].class, serializedForm); for (int i = 0; i < columnNames.length; i++) { columnNames[i] = SerializationStringEscaper.unescape(columnNames[i]); } return new CoalesceUnit(columnNames); } @Override public String toString(final CoalesceUnit instance) { final String[] inputColumnNames = instance.getInputColumnNames(); for (int i = 0; i < inputColumnNames.length; i++) { inputColumnNames[i] = SerializationStringEscaper.escape(inputColumnNames[i]); } return delegate.toString(inputColumnNames); } @Override public boolean isConvertable(final Class<?> type) { return type == CoalesceUnit.class; } }