cucumber.runtime.xstream.BigIntegerConverter Maven / Gradle / Ivy
package cucumber.runtime.xstream;
import java.math.BigInteger;
import java.util.Locale;
class BigIntegerConverter extends ConverterWithNumberFormat {
public BigIntegerConverter(Locale locale) {
super(locale, new Class[]{BigInteger.class});
}
@Override
protected BigInteger downcast(Number argument) {
return BigInteger.valueOf(argument.longValue());
}
}