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

com.github.cybortronik.parser.ssv.convert.BooleanConverter Maven / Gradle / Ivy

package com.github.cybortronik.parser.ssv.convert;

/**
 * Created by strifan on 09.06.2015.
 */
public class BooleanConverter implements ValueConverter {
	@Override
	public Class getConverterClass() {
		return Boolean.class;
	}

	@Override
	public Boolean convert(String value) {
		return "TRUE".equalsIgnoreCase(value);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy