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

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

There is a newer version: 8.2.0-rc.4
Show newest version
package com.abubusoft.kripton.common;

import java.util.Currency;

public class CurrencyUtils {

	public static String write(Currency value) {
		if (value==null) return null;
		return value.toString();		
	}
	
	public static Currency read(String value) {
		return Currency.getInstance(value);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy