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

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

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

/**
 * Converts a string in a CSV file to a {@link Boolean}.
 *
 * @author Tobias Liefke
 */
public class CsvBooleanConverter implements CsvPropertyConverter {

	@Override
	public Boolean convert(final Class targetType, final String value) {
		return value != null && value.matches("(?i)true|1|on|[yj].*|x");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy