de.objektkontor.clp.converter.ByteConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commandline-parameters Show documentation
Show all versions of commandline-parameters Show documentation
Provides tools for definition, parsing and validation of command line parameters
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);
}
}