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

org.fastnate.data.csv.CsvCharacterConverter Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package org.fastnate.data.csv;

/**
 * Converts a string from a CSV file to a {@link Character}.
 *
 * @author Tobias Liefke
 */
public class CsvCharacterConverter implements CsvPropertyConverter {

	@Override
	public Character convert(final Class targetType, final String value) {
		return value == null || value.length() == 0 ? null : value.charAt(0);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy