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

com.mailjet.client.MailjetRequestUtil Maven / Gradle / Ivy

There is a newer version: 5.2.6
Show newest version
package com.mailjet.client;

import java.math.BigDecimal;

/**
 * 
 * @author s.stoyanov
 *
 */
public final class MailjetRequestUtil {

	private MailjetRequestUtil() {
	}
	
	public static String encodeDecimal(BigDecimal value) {
		return value != null ? "\f" + (value.scale() != 0 ? value : value.setScale(1)).toString() + "\f" : null;
	}
	
	public static String decodeDecimals(String payload) {
		return payload != null ? payload.replaceAll("\"\\\\f([^\"]+)\\\\f\"", "$1") : null;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy