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

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

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

import java.nio.ByteBuffer;

import org.mentalog.AsciiEncodable;

public class AsciiEncoder implements Encoder {
	
	@Override
	public boolean encode(Object obj, ByteBuffer bb, int varargsPos, int varargsLen) {
		
		if (obj instanceof AsciiEncodable) {
			AsciiEncodable asciiEncodable = (AsciiEncodable) obj;
			asciiEncodable.ToAscii(bb);
			return true;
		}
		return false;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy