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

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

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

import java.nio.ByteBuffer;

import ch.lambdaj.function.convert.Converter;

public class ByteBuffer2ByteArrayConverter implements Converter {

	public static ByteBuffer2ByteArrayConverter createByteBufferConverter() {
		return new ByteBuffer2ByteArrayConverter();
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy