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

com.lordofthejars.nosqlunit.redis.embedded.DoubleToStringByteArrayConverter Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.lordofthejars.nosqlunit.redis.embedded;

import redis.clients.util.SafeEncoder;
import ch.lambdaj.function.convert.Converter;

public class DoubleToStringByteArrayConverter implements Converter {

	public static DoubleToStringByteArrayConverter createDoubleToStringByteArrayConverter() {
		return new DoubleToStringByteArrayConverter();
	}
	
	@Override
	public byte[] convert(Double from) {
		String doubleValue = Double.toString(from);
		return SafeEncoder.encode(doubleValue);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy