de.objektkontor.clp.converter.IntegerConverter 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 IntegerConverter implements ParameterConverter {
@Override
public Integer convert(String value) throws Exception {
return Integer.parseInt(value);
}
}