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

org.mentalog.encoder.NullEncoder Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package org.mentalog.encoder;

import java.nio.ByteBuffer;

public class NullEncoder implements Encoder {
	
	public static byte[] NULL = "null".getBytes();
	
	@Override
	public boolean encode(Object obj, ByteBuffer bb, int varargsPos, int varargsLen) {
		
		if (obj == null) {
			bb.put(NULL);
			return true;
		}
		return false;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy