com.abubusoft.kripton.common.BigIntegerUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kripton-core Show documentation
Show all versions of kripton-core Show documentation
Kripton Persistence Library - core module
package com.abubusoft.kripton.common;
import java.math.BigInteger;
public class BigIntegerUtils {
public static BigInteger read(String value) {
if (!StringUtils.hasText(value)) return null;
return new BigInteger(value);
}
public static String write(BigInteger value) {
if (value==null) return null;
return value.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy