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

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

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

import static java.nio.ByteBuffer.wrap;
import java.nio.ByteBuffer;

import ch.lambdaj.function.convert.Converter;

public class ByteArray2ByteBufferConverter implements Converter {

	@Override
	public ByteBuffer convert(byte[] from) {
		return wrap(from);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy