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

com.lordofthejars.nosqlunit.redis.embedded.ByteArrayToStringConverter 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 ByteArrayToStringConverter implements Converter {

	public static ByteArrayToStringConverter createByteArrayToStringConverter() {
		return new ByteArrayToStringConverter();
	}
	
	@Override
	public String convert(byte[] from) {
		if(from != null) {
			return SafeEncoder.encode(from);
		} else {
			return null;
		}
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy