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

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

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

import de.objektkontor.clp.ParameterConverter;

public class ByteConverter implements ParameterConverter {

	@Override
	public Byte convert(String value) throws Exception {
		return Byte.parseByte(value);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy