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

de.objektkontor.clp.converter.IntegerConverter Maven / Gradle / Ivy

The newest version!
package de.objektkontor.clp.converter;

import de.objektkontor.clp.ParameterConverter;

public class IntegerConverter implements ParameterConverter {

	@Override
	public Integer convert(String value) throws Exception {
		return Integer.parseInt(value);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy