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

com.abubusoft.kripton.common.BigIntegerUtils Maven / Gradle / Ivy

There is a newer version: 8.2.0-rc.4
Show newest version
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